type tprocess ?ignore_stderr ~dir ~prog ~args constructs an action, that when run
causes a new process to be created to run prog, passing args, in dir.
The process fails if its exit code is not zero, or if print things on stderr
(unless ~ignore_stderr:true is passed). The process is not sandboxed by default.
include sig ... endval sexp_of_t : t ‑> Sexplib.Sexp.tval process : ?ignore_stderr:bool ‑> ?sandbox:Sandbox.t ‑> dir:Path.t ‑> prog:string ‑> args:string list ‑> unit ‑> tprocess ?ignore_stderr ~dir ~prog ~args constructs an action, that when run
causes a new process to be created to run prog, passing args, in dir.
The process fails if its exit code is not zero, or if print things on stderr
(unless ~ignore_stderr:true is passed). The process is not sandboxed by default.