We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4804128 commit 987f735Copy full SHA for 987f735
doc/Language/ipc.pod6
@@ -38,6 +38,12 @@ all output pipes, the program will usually not terminate.
38
}
39
$git.out.close();
40
41
+If the program fails (exits with a non-zero exit code), it will throw
42
+an exception when the return object is sunk. You can capture the
43
+L<Proc|/type/Proc> object to avoid this if needed.
44
+
45
+ my $don't-die = run '/bin/false';
46
47
You can tell the C<Proc> object to capture output as a file handle by passing
48
the C<:out> and C<:err> flags. You may also pass input via the C<:in> flag.
49
0 commit comments