23 lines
617 B
Text
23 lines
617 B
Text
open IO.Process
|
|
|
|
#eval do
|
|
child ← spawn { cmd := "sh", args := #["-c", "echo hi!"] };
|
|
child.wait
|
|
|
|
#eval do
|
|
child ← spawn { cmd := "sh", args := #["-c", "echo ho!"], stdout := Stdio.piped };
|
|
child.wait;
|
|
child.stdout.readToEnd
|
|
|
|
#eval do
|
|
child ← spawn { cmd := "head", args := #["-n1"], stdin := Stdio.piped, stdout := Stdio.piped };
|
|
child.stdin.putStrLn "hu!";
|
|
child.stdin.flush;
|
|
child.wait;
|
|
child.stdout.readToEnd
|
|
|
|
#eval do
|
|
child ← spawn { cmd := "true", stdin := Stdio.piped };
|
|
child.wait;
|
|
child.stdin.putStrLn "ha!";
|
|
child.stdin.flush <|> IO.println "flush of broken pipe failed"
|