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