-[repl-str]
String in command to be replaced. Default {}. The same as find -exec command {} \;
STDIN-args replace occurences of repl-str in the common-args.
Without this option, STDIN-args are appended to the command's arguments.
Without this option, STDIN-args are appended to the command's arguments.
Unquoted blanks do not terminate arguments.
Implies --exit and --max-lines=1.
| --max-args=max-args -n max-args
At most max-args arguments are used per command line.
--max-args=1 generates a seperate command for each argument.
> ls -1 b* | xargs echo +
+b1 b2 b3
> ls -1 b* | xargs -max-args=1 echo +
+b1
+b2
+b3
| |
Fewer than max-args arguments will be used if max-chars
is exceeded, unless --exit is given, in which case xargs exits.
| -J repl-str | |