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 b379c9a commit 0c421acCopy full SHA for 0c421ac
doc/Type/IO.pod6
@@ -316,8 +316,9 @@ C<False>.
316
Runs an external command without involving a shell.
317
318
run ‚touch‘, ‚>foo.txt‘; # no shell redirect (as there is no shell)
319
- shell ‚ls \>*‘; # the shell would redirect, hence the backslash and the glob is expanded
320
- run Q:w{rm >foo.txt}; # again no redirect but with a list word quote
+ shell ‚ls \>*‘; # the shell would redirect, hence the backslash
+ # and the glob is expanded
321
+ run Q:w{rm >foo.txt}; # again no redirect but with a list word quote
322
# OUTPUT: «>foo.txt»
323
324
See L<Proc|/type/Proc> for more details, for example on how to capture
0 commit comments