package core_unix

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

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 = {
  1. stdin : Core.Out_channel.t;
  2. stdout : Core.In_channel.t;
  3. stderr : Core.In_channel.t;
}