search for: a216e21

Displaying 1 result from an estimated 1 matches for "a216e21".

Did you mean: 216221
2016 May 23
7
[PATCH 1/5] mllib: make external_command echo the command executed
...t external_command ?(echo_cmd = true) cmd = + if echo_cmd then + debug "%s" cmd; let chan = Unix.open_process_in cmd in let lines = ref [] in (try while true do lines := input_line chan :: !lines done diff --git a/mllib/common_utils.mli b/mllib/common_utils.mli index 666e023..a216e21 100644 --- a/mllib/common_utils.mli +++ b/mllib/common_utils.mli @@ -239,8 +239,11 @@ val compare_version : string -> string -> int val compare_lvm2_uuids : string -> string -> int (** Compare two LVM2 UUIDs, ignoring '-' characters. *) -val external_command : string -> s...