From 27876dc77ff259e27a71ea6f30662a668adfd134 Mon Sep 17 00:00:00 2001
From: Simon Hengel Safe Haskell None Safe-Inferred , i.e.,
map f [x1, x2, ..., xn] == [f x1, f x2, ..., f xn] - map f [x1, x2, ...] == [f x1, f x2, ...] -
Class for string-like datastructures; used by the overloaded string - extension (-XOverloadedStrings in GHC). -
Arguments to pass to the executable -
Arguments to pass to the executableOptional path to the working directory -
Optional path to the working directoryOptional environment (otherwise inherit) -
Optional environment (otherwise inherit)stderr
respectively.
- respectively.For example, to start a process and feed a string to its stdin: -
For example, to start a process and feed a string to its stdin:(inp,out,err,pid) <- runInteractiveProcess "..." - forkIO (hPutStr inp str) -
The hSetBinaryMode
.
-