parallel, xargs: refer to each other (#20489)

This commit is contained in:
Fazle Arefin
2026-01-02 17:51:27 +11:00
committed by GitHub
parent 3caebb5c67
commit a45940db1c
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -1,6 +1,7 @@
# parallel
> Run commands on multiple CPU cores.
> See also: `xargs`.
> More information: <https://www.gnu.org/software/parallel/man.html>.
- Gzip several files at once, using all cores:
+1
View File
@@ -2,6 +2,7 @@
> Execute a command with piped arguments coming from another command, a file, etc.
> The input is treated as a single block of text and split into separate pieces on spaces, tabs, newlines, and end-of-file.
> See also: `parallel`.
> More information: <https://www.gnu.org/software/findutils/manual/html_mono/find.html#Invoking-xargs>.
- Run a command using the input data as arguments: