‑‑verbose -t Display the constructed command on STDERR
output before executing it.
| ‑‑interactive -p Prompt whether to run each command , response starts with y or Y.
Implies ‑‑verbose.
| ‑‑replace[=replace‑str]
‑i[replace‑str]
Use STDIN‑arg to replace occurences of replace‑str in the common arguments .
Unquoted blanks do not terminate arguments.
Default {} (like for find -exec)
Implies ‑‑exit and ‑‑max‑lines= 1.
‑‑max‑procs=max‑procs -P max‑procs
Run up to max‑procs processes at a time;
the default is 1*.
| ‑‑null -0
Input filenames are terminated by a null instead of by
whitespace, and the quotes and backslash are not special (every
character is taken literally).
Disables the end-of-file string, which is treated like any other argument.
Useful when arguments might contain white space, quote marks, or backslashes.
The GNU find -print0 option produces input suitable for this mode.
|
‑‑eof[=eof-str] -e[eof-str]
If the eof string occurs as a line of input, the rest of the input is ignored.
If eof-str is omitted, there is no end-of file string. Default _.
|
‑‑max‑chars=max‑chars -s max‑chars
Use at most max‑chars characters per command line, including the
command and common arguments and the terminating nulls at the
ends of the argument strings. The default is as large as possible, up to 20k characters.
|
‑‑max‑lines[=max‑lines] -l[max‑lines]
Use at most max‑lines nonblank input lines per command line, default 1 if max‑lines is omitted.
Trailing blanks cause an input line to be logically continued on the next input line!
Implies ‑‑exit.
| ‑‑max‑args=max‑args -n max‑args
Use at most max‑args arguments per command line.
Fewer than max‑args arguments will be used if size (see ‑‑max‑chars )
is exceeded, unless ‑‑exit is given, in which case xargs. exits.
‑‑no-run-if-empty -r
If STDIN‑arg does not contain strings, do not run the command.
Normally, the command is run once even if there is no input.
| ‑‑exit -x Exit if the size (see ‑‑max‑chars ) is exceeded.
Use ‑‑max‑args with ‑‑interactive; otherwise chances are that only one exec will be done.
| ‑‑help | Print a summary of the options to xargs and exit.
| ‑‑version| Print the version number of xargs and exit.
| | | | | | | | | | | | | | | |