Module Core__.Core_unix.Process_channels

Similar to UnixLabels.open_process, but the second argument specifies the environment passed to the command. The result is a triple of channels connected to the standard output, standard input, and standard error of the command.

type t = {
stdin : Core__.Import.Out_channel.t;
stdout : Core__.Import.In_channel.t;
stderr : Core__.Import.In_channel.t;
}