Version 1.2.0
This is a preliminary version of the documentation. Help us to improve it by filling tickets. We are looking for native english speakers to proof read the documentation. Contact us!
module Lwt_process:Process managementsig..end
typecommand =string * string array
val shell : string -> command"/bin/sh"val exec : ?env:string array -> command -> Unix.process_status Lwt.texec command execute command and returns its exit status.val pread : ?env:string array -> command -> string Lwt.tval pread_chars : ?env:string array -> command -> char Lwt_stream.tval pread_line : ?env:string array -> command -> string Lwt.tval pread_lines : ?env:string array -> command -> string Lwt_stream.tval pwrite : ?env:string array -> command -> string -> unit Lwt.tval pwrite_chars : ?env:string array -> command -> char Lwt_stream.t -> unit Lwt.tval pwrite_line : ?env:string array -> command -> string -> unit Lwt.tval pwrite_lines : ?env:string array -> command -> string Lwt_stream.t -> unit Lwt.tval pmap : ?env:string array -> command -> string -> string Lwt.tval pmap_chars : ?env:string array ->
command -> char Lwt_stream.t -> char Lwt_stream.tval pmap_line : ?env:string array -> command -> string -> string Lwt.tval pmap_lines : ?env:string array ->
command -> string Lwt_stream.t -> string Lwt_stream.tclass process_none :?env:string array -> command ->object..end
val open_process_none : ?env:string array -> command -> process_noneval with_process_none : ?env:string array ->
command -> (process_none -> 'a Lwt.t) -> 'a Lwt.tclass process_in :?env:string array -> command ->object..end
val open_process_in : ?env:string array -> command -> process_inval with_process_in : ?env:string array ->
command -> (process_in -> 'a Lwt.t) -> 'a Lwt.tclass process_out :?env:string array -> command ->object..end
val open_process_out : ?env:string array -> command -> process_outval with_process_out : ?env:string array ->
command -> (process_out -> 'a Lwt.t) -> 'a Lwt.tclass process :?env:string array -> command ->object..end
val open_process : ?env:string array -> command -> processval with_process : ?env:string array ->
command -> (process -> 'a Lwt.t) -> 'a Lwt.tclass process_full :?env:string array -> command ->object..end
val open_process_full : ?env:string array -> command -> process_fullval with_process_full : ?env:string array ->
command -> (process_full -> 'a Lwt.t) -> 'a Lwt.t