executor-0.0.1: Shell helpers

Safe HaskellSafe
LanguageHaskell2010

Executor

Synopsis

Documentation

execSync :: String -> IO () Source #

Execute a single shell command | Not much different from callCommand though | for example: | main = do | execSync "ls"

execListSync :: [String] -> IO () Source #

Execute a list of shell commands in sequence synchronously | for example: | main = do | execListSync ["ls", "whoami"]