-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Cmd
object notes in the Running External Programs section of the manual.
#39704
Conversation
@@ -373,3 +373,13 @@ stages have different latency so they use a different number of parallel workers | |||
saturated throughput. | |||
|
|||
We strongly encourage you to try all these examples to see how they work. | |||
|
|||
## `Cmd` Objects | |||
[`Cmd`](@ref) objects can also be used. It can customize them with the `dir` keyword to set the working directory, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe can also be used directly, since the cmd syntax does also produce Cmd objects. And then adjust the rest of the sentence to say "This way, they may be used to customize ..."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. I fixed it. PTAL.
Co-authored-by: Keno Fischer <keno@alumni.harvard.edu>
Co-authored-by: Keno Fischer <keno@alumni.harvard.edu>
Thank you. I committed your suggestions. |
I added
Cmd
object notes in the Running External Programs section of the manual to fix #19286.