--- ./Makefile.orig 2024-02-25 13:47:01.000000000 -0600
+++ ./Makefile 2025-08-11 13:21:43.931881357 -0500
@@ -1,6 +1,6 @@
BINS=isutf8 ifdata ifne pee sponge mispipe lckdo parallel errno
PERLSCRIPTS=vidir vipe ts combine zrun chronic
-MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 chronic.1 mispipe.1 lckdo.1 parallel.1 errno.1
+MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 chronic.1 mispipe.1 lckdo.1 parallel-moreutils.1 errno.1
CFLAGS?=-O2 -g -Wall
INSTALL_BIN?=install -s
PREFIX?=/usr
--- ./parallel.docbook.orig 2024-02-25 13:47:01.000000000 -0600
+++ ./parallel.docbook 2025-08-11 13:21:18.735882750 -0500
@@ -23,27 +23,27 @@
- parallel
+ parallel-moreutils
1
moreutils
moreutils
- parallel
+ parallel-moreutils
run programs in parallel
- parallel
+ parallel-moreutils
options
command
--
argument ...
- parallel
+ parallel-moreutils
options
--
command ...
@@ -53,7 +53,7 @@
DESCRIPTION
- parallel runs the specified command,
+ parallel-moreutils runs the specified command,
passing it a single one of the specified arguments. This is
repeated for each argument. Jobs may be run in
parallel. The default is to run one job per CPU.
@@ -112,18 +112,18 @@
EXAMPLE
- parallel sh -c "echo hi; sleep 2; echo bye" -- 1 2 3
+ parallel-moreutils sh -c "echo hi; sleep 2; echo bye" -- 1 2 3
This runs three subshells that each print a message, delay,
and print another message. If your system has multiple
- CPUs, parallel will run some of the jobs in parallel,
+ CPUs, parallel-moreutils will run some of the jobs in parallel,
which should be clear from the order the messages are
output.
- parallel -j 3 ufraw -o processed -- *.NEF
+ parallel-moreutils -j 3 ufraw -o processed -- *.NEF
This runs three ufraw processes at the same time until
@@ -131,7 +131,7 @@
- parallel -j 3 -- ls df "echo hi"
+ parallel-moreutils -j 3 -- ls df "echo hi"
This runs three independent commands in parallel.
@@ -144,7 +144,7 @@
Its exit status is the combination of the exit statuses of each
command ran, ORed together. (Thus, if any one command
- exits nonzero, parallel as a whole will exit nonzero.)
+ exits nonzero, parallel-moreutils as a whole will exit nonzero.)