-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Shell helpers -- -- Haskell module to execute single or multiple shell commands @package executor @version 0.0.2 module Executor -- | Execute a single shell command Not much different from callCommand -- though for example: main = do execSync "ls" execSync :: String -> IO () -- | Execute a list of shell commands in sequence synchronously for -- example: main = do execListSync ["ls", "whoami"] execListSync :: [String] -> IO ()