#
module Process : sig
#
type t = Core_extended.Shell.Process.t
#
type status = [
| `Timeout of Core_extended.Std.Time.Span.t
| `Exited of int
| `Signaled of Async.Std.Signal.t
]
#
type result = Core_extended.Shell.Process.result = {
}
#
val status_to_string :
status -> string
end
#
type 'a with_process_flags = 'a Core_extended.Shell.with_process_flags
#
type 'a with_run_flags = 'a Core_extended.Shell.with_run_flags
#
type 'a with_test_flags = 'a Core_extended.Shell.with_test_flags
#
type 'a with_ssh_flags = 'a Core_extended.Shell.with_ssh_flags
#
type 'a cmd = 'a Core_extended.Shell.cmd
#
type ('a, 'ret) sh_cmd = ('a, 'ret) Core_extended.Shell.sh_cmd
#
val mkdir : ?p:unit -> ?perm:int -> string -> unit Async.Std.Deferred.t
#
val scp : ?compress:bool -> ?recurse:bool -> ?user:string -> host:string -> string -> string -> unit Async.Std.Deferred.t