mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-26 07:57:58 +00:00
8202ef3a11
This still does not work if -j 0 and #files_available > 2*#procs_available So it fails one unittest
11 lines
253 B
Bash
11 lines
253 B
Bash
#!/bin/bash
|
|
|
|
cd input-files/test08
|
|
|
|
ls | parallel -q perl -ne '/_PRE (\d+)/ and $p=$1; /hatchname> (\d+)/ and $1!=$p and print $ARGV,"\n"'
|
|
|
|
seq 1 10 | parallel -j 1 echo | sort
|
|
seq 1 10 | parallel -j 2 echo | sort
|
|
seq 1 10 | parallel -j 3 echo | sort
|
|
|