Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/xargs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -918,8 +918,8 @@ fn do_xargs(args: &[&str]) -> Result<CommandResult, XargsError> {
.short('x')
.long(options::EXIT)
.help(
"Exit if the number of arguments allowed by -L or -n do not \
fit into the number of allowed characters",
"Terminate if a constructed command line would exceed the size \
limit (see -s) rather than reducing the argument count",
)
.action(ArgAction::SetTrue),
)
Expand Down Expand Up @@ -989,7 +989,7 @@ fn do_xargs(args: &[&str]) -> Result<CommandResult, XargsError> {
Arg::new(options::VERBOSE)
.short('t')
.long(options::VERBOSE)
.help("Be verbose")
.help("Print each command to stderr before executing it")
.action(ArgAction::SetTrue),
)
.arg(
Expand Down
Loading