Bug #1953
[PATCH] Add -P option to xargs
| Status: | Closed | Start date: | ||
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - |
Description
Hi,
This is adds -P to xargs, taken from freebsd. Example usage:
find . -type f -name \*.iso -print0 | xargs -0n1 -P4 bzip2
- Axel Scheepers
Related todos
History
Updated by swildner over 2 years ago
Thanks, I've committed it (da41975b6f52cb705a22e5cc18bc4809c1bf5932).
The only things I changed was some sorting in the getopt() string and in the
manpage (oh, and bumping the latter's date, too :).