executor-0.0.3: test.hs
module Main where
import Executor
import System.Exit (exitSuccess)
main = do
execSync "ls"
execListSync [
"echo hello",
"sleep 1",
"echo world"
]
exitSuccessmodule Main where
import Executor
import System.Exit (exitSuccess)
main = do
execSync "ls"
execListSync [
"echo hello",
"sleep 1",
"echo world"
]
exitSuccess