parallel/unittest/tests-to-run/test08.sh

13 lines
264 B
Bash
Raw Normal View History

2009-02-17 03:58:13 +00:00
#!/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"' \
| sort
seq 1 10 | parallel -j 1 echo | sort
seq 1 10 | parallel -j 2 echo | sort
seq 1 10 | parallel -j 3 echo | sort