-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | popenhs is a popen-like library for Haskell. -- -- It provides a convenient way of sending string input to a subprocess -- and reading output from it lazily. It requires the Posix module and -- has been tested under ghc5 so far. @package popenhs @version 1.0.0 module System.Posix.POpen popen :: FilePath -> [String] -> Maybe String -> IO (String, String, ProcessID) popenEnvDir :: FilePath -> [String] -> Maybe String -> Maybe [(String, String)] -> Maybe FilePath -> IO (String, String, ProcessID)