Îõ³h$4_2KÒ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQ Safe-Inferred{RSTUVWXY Safe-Inferredá typed-process"The name of the system null deviceNone #$/35ÉÔ×Ù1¹? typed-processÔWrapper for when an exception is thrown when reading from a child process, used by '. typed-processException thrown by A5 in the event of a non-success exit code. Note that A- is called by other functions as well, like < or 4.*Note that several functions that throw an  intentionally do not populate  or Å. This prevents unbounded memory usage for large stdout and stderrs.  typed-process‚A running process. The three type parameters provide the type of the standard input, standard output, and standard error streams.  typed-processÌA specification for how to create one of the three standard child streams, stdin, stdout and stderr. A  ! can be thought of as containing A type safe version of Z from System.Processç. This determines whether the stream should be inherited from the parent process, piped to or from a [, etc.3A means of accessing the stream as a value of type aÍA cleanup action which will be run on the stream once the process terminatesSee examples below.  typed-processåWhether a stream is an input stream or output stream. Note that this is from the perspective of the  child process1, so that a child's standard input stream is an STInput8, even though the parent process will be writing to it. typed-processÜAn abstract configuration for a process, which can then be launched into an actual running  ú. Takes three type parameters, providing the types of standard input, standard output, and standard error, respectively.7There are three ways to construct a value of this type: With the È smart constructor, which takes a command name and a list of arguments. With the . smart constructor, which takes a shell string With the \Ó instance via OverloadedStrings. If you provide it a string with no spaces (e.g., "date"?), it will treat it as a raw command with no arguments (e.g., proc "date" []!). If it has spaces, it will use shell.¢In all cases, the default for all three streams is to inherit the streams from the parent process. For other settings, see the setters below for default values. typed-process Create a & from the given command and arguments. typed-process Create a  from the given shell command. typed-process3Set the child's standard input stream to the given  . Default: # typed-process4Set the child's standard output stream to the given  . Default: # typed-process3Set the child's standard error stream to the given  . Default: # typed-process/Set the working directory of the child process.-Default: current process's working directory. typed-process6Inherit the working directory from the parent process. typed-process3Set the environment variables of the child process.'Default: current process's environment. typed-process:Inherit the environment variables from the parent process. typed-processÍShould we close all file descriptors besides stdin, stdout, and stderr? See ] for more information.Default: False typed-process%Should we create a new process group?Default: False typed-processÅDelegate handling of Ctrl-C to the child. For more information, see ^.Default: False typed-processDetach console on Windows, see _.Default: False typed-process#Create new console on Windows, see `.Default: False typed-process!Set a new session with the POSIX setsid* syscall, does nothing on non-POSIX. See a.Default: False typed-process0Set the child process's group ID with the POSIX setgid* syscall, does nothing on non-POSIX. See b.Default: False typed-process*Inherit the group from the parent process.  typed-process/Set the child process's user ID with the POSIX setuid* syscall, does nothing on non-POSIX. See c.Default: False! typed-process)Inherit the user from the parent process." typed-process Create a new   from the given Z' and a helper function. This function:Takes as input the raw  Maybe Handle returned by the d function. The handle will be Just [ if the Z argument is e and Nothing otherwise. See d for more details. Returns the actual stream value a8, as well as a cleanup function to be run when calling ,.# typed-processÆA stream spec which simply inherits the stream of the parent process.$ typed-process¨A stream spec which is empty when used for for input and discards output. Note this requires your platform's null device to be available when the process is started.% typed-processäA stream spec which will close the stream for the child process. You usually do not want to use this, as it will leave the corresponding file descriptor unassigned and hence available for re-use in the child process. Prefer $/ unless you're certain you want this behavior.& typed-process8An input stream spec which sets the input to the given fÏ. A separate thread will be forked to write the contents to the child process.' typed-process%Capture the output of a process in a f.This function will fork a separate thread to consume all input from the process, and will only make the results available when the underlying [& is closed. As this is provided as an gÖ action, you can either check if the result is available, or block until it's ready.?In the event of any exception occurring when reading from the [, the g action will throw a .( typed-processÄCreate a new pipe between this process and the child, and return a [ to communicate with the child.) typed-processUse the provided [8 for the child process, and when the process exits, do notù close it. This is useful if, for example, you want to have multiple processes write to the same log file sequentially.* typed-processUse the provided [á for the child process, and when the process exits, close it. If you have no reason to keep the [! open, you should use this over ).+ typed-process$Launch a process based on the given #. You should ensure that you call ,ß on the result. It's usually better to use one of the functions in this module which ensures , is called, such as .., typed-processÆClose a process and release any resources acquired. This will ensure h¿ is called, wait for the process to actually exit, and then close out resources allocated for the streams. In the event of any cleanup exceptions being thrown this will throw an exception.- typed-process!Uses the bracket pattern to call + and ensures that , is called.This function is usually not0 what you want. You're likely better off using .. See  /https://github.com/fpco/typed-process/issues/25.. typed-process!Uses the bracket pattern to call + . Unlike -Ð, this function will wait for the child process to exit, and only kill it with ,; in the event that the inner function throws an exception./ typed-processDeprecated synonym for -.0 typed-processSame as -, but also calls A1 typed-processSame as ., but also calls A2 typed-processDeprecated synonym for 0.3 typed-process;Run a process, capture its standard output and error as a fÍ, wait for it to complete, and then return its exit code, output, and error.Note that any previously used  or  will be overridden.4 typed-processSame as 3, but instead of returning the i, checks it with A.ÂExceptions thrown by this function will include stdout and stderr.5 typed-processSame as 3Ï, but only read the stdout of the process. Original settings for stderr remain.6 typed-processSame as 5 , but instead of returning the i, checks it with A.7Exceptions thrown by this function will include stdout.7 typed-processSame as 3Ð, but only read the stderr of the process. Original settings for stdout remain.8 typed-processSame as 7 , but instead of returning the i, checks it with A.7Exceptions thrown by this function will include stderr.9 typed-processSame as 3%, but interleaves stderr with stdout.‡Motivation: Use this function if you need stdout interleaved with stderr output (e.g. from an HTTP server) in order to debug failures.: typed-processSame as 9, but instead of returning the i, checks it with A.7Exceptions thrown by this function will include stdout.; typed-process=Run the given process, wait for it to exit, and returns its i.< typed-processSame as ; , but instead of returning the i, checks it with A.= typed-process1Wait for the process to exit and then return its i.> typed-processSame as = , but in g.? typed-process5Check if a process has exited and, if so, return its i.@ typed-processSame as ? , but in g.A typed-process×Wait for a process to exit, and ensure that it exited successfully. If not, throws an .ªExceptions thrown by this function will not include stdout or stderr (This prevents unbounded memory usage from reading them into memory). However, some callers such as 4= catch the exception, add the stdout and stderr, and rethrow.B typed-processSame as A , but in g.C typed-process,Get the child's standard input stream value.D typed-process-Get the child's standard output stream value.E typed-process,Get the child's standard error stream value.F typed-processTake  out of the  Ð. This method is needed in cases one need to use low level functions from the process( package. Use cases for this method are: %Send a special signal to the process.ÂTerminate the process group instead of terminating single process.4Use platform specific API on the underlying process.…This method is considered unsafe because the actions it performs on the underlying process may overlap with the functionality that  typed-process1 provides. For example the user should not call ! on the process handle as eiter  or , will lock. Additionally, even if process was terminated by the  or by sending signal, ,Í should be called either way in order to cleanup resources allocated by the  typed-process.H typed-processThis instance uses &Å to convert a raw string into a stream of input for a child process.! typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process typed-process  typed-process typed-process! typed-process" typed-process typed-process+ typed-process- typed-process typed-process. typed-process typed-process0 typed-process typed-process1 typed-process typed-process3 typed-process4 typed-process5 typed-process6 typed-process7 typed-process8 typed-process9 typed-process: typed-process typed-process; typed-process typed-process< typed-processÆ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFÆ  !#$%&'()*";3579.-+,<468:10=>?@ABCDEF/2ê        !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdecfg`ah`ai`aj`ak`al`am`an`o`apqrsctu`cvwø,typed-process-0.2.6.2-CCXTI15J23DCOwGRxIkP7tSystem.Process.Typed.InternalSystem.Process.TypedPaths_typed_processSystem.Process ProcessHandlewaitForProcessterminateProcess nullDeviceByteStringOutputExceptionExitCodeException eceExitCodeeceProcessConfig eceStdout eceStderrProcess StreamSpec StreamTypeSTInputSTOutput ProcessConfigprocshellsetStdin setStdout setStderr setWorkingDirsetWorkingDirInheritsetEnv setEnvInherit setCloseFdssetCreateGroupsetDelegateCtlcsetDetachConsolesetCreateNewConsole setNewSession setChildGroupsetChildGroupInherit setChildUsersetChildUserInherit mkStreamSpecinherit nullStreamclosedbyteStringInputbyteStringOutput createPipe useHandleOpenuseHandleClose startProcess stopProcesswithProcessTermwithProcessWait withProcesswithProcessTerm_withProcessWait_ withProcess_ readProcess readProcess_readProcessStdoutreadProcessStdout_readProcessStderrreadProcessStderr_readProcessInterleavedreadProcessInterleaved_ runProcess runProcess_ waitExitCodewaitExitCodeSTM getExitCodegetExitCodeSTM checkExitCodecheckExitCodeSTMgetStdin getStdout getStderrunsafeProcessHandle$fApplicativeCleanup$fIsStringStreamSpec$fIsStringProcessConfig$fShowProcessConfig $fShowProcess$fShowExitCodeException$fExceptionExitCodeException$$fExceptionByteStringOutputException$fShowByteStringOutputException$fFunctorStreamSpec$fFunctorCleanupversion getBinDir getLibDir getDynLibDir getDataDir getLibexecDir getSysconfDirgetDataFileNameprocess-1.6.9.0System.Process.Common StdStreambaseGHC.IO.Handle.TypesHandle Data.StringIsString close_fds delegate_ctlcdetach_consolecreate_new_console new_session child_group child_user createProcess CreatePipebytestring-0.10.10.0Data.ByteString.Lazy.Internal ByteString GHC.Conc.SyncSTMGHC.IO.ExceptionExitCode