Package: parallel Version: 20120422-1 I have had to make ikiwiki-hosting conflict with parallel because even with --tollef enabled by default, it fails to behave the same as moreutils parallel does. Taking the first example from the man page:
parallel 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, which should be clear from the order the mes‐
sages are output.
joey@gnu:~>parallel.moreutils sh -c "echo hi; sleep 2; echo bye" -- 1 2 3
hi
hi
bye
bye
hi
bye
joey@gnu:~>parallel --tollef sh -c "echo hi; sleep 2; echo bye" -- 1 2 3
bye 1
bye 2
bye 3
--
see shy jo
signature.asc
Description: Digital signature

