We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3478d7c commit d417bbeCopy full SHA for d417bbe
library/std/src/process.rs
@@ -557,6 +557,9 @@ impl Command {
557
///
558
/// [`args`]: Command::args
559
560
+ /// Note that the argument is passed to the program directly as is, so you shouldn't wrap it in quotes
561
+ /// or escape special characters the same way you would do that when running the program from terminal.
562
+ ///
563
/// # Examples
564
565
/// Basic usage:
@@ -582,6 +585,9 @@ impl Command {
582
585
583
586
/// [`arg`]: Command::arg
584
587
588
+ /// Note that each argument is passed to the program directly as is, so you shouldn't wrap it in quotes
589
+ /// or escape special characters the same way you would do that when running the program from terminal directly.
590
591
592
593
0 commit comments