Skip to content

Commit

Permalink
Document file descriptors in run (#45710)
Browse files Browse the repository at this point in the history
  • Loading branch information
oscardssmith committed Jun 21, 2022
1 parent 18c7e37 commit 1f99ee9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions base/process.jl
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,9 @@ Run a command object, constructed with backticks (see the [Running External Prog
section in the manual). Throws an error if anything goes wrong, including the process
exiting with a non-zero status (when `wait` is true).
The `args...` allow you to pass through file descriptors to the command, and are ordered
like regular unix file descriptors (eg `stdin, stdout, stderr, FD(3), FD(4)...`).
If `wait` is false, the process runs asynchronously. You can later wait for it and check
its exit status by calling `success` on the returned process object.
Expand Down

0 comments on commit 1f99ee9

Please sign in to comment.