parallel/unittest/tests-to-run/test08.sh
Ole Tange 3fa2a4a8d4 Implemented automake
Prepared for name change to 'par'
2010-04-18 16:18:31 +02:00

15 lines
262 B
Bash

#!/bin/bash
PAR=parallel
cd input-files/test08
ls \
| $PAR -q perl -ne '/_PRE (\d+)/ and $p=$1; /hatchname> (\d+)/ and $1!=$p and print $ARGV,"\n"' \
| sort
seq 1 10 | $PAR -j 1 echo | sort
seq 1 10 | $PAR -j 2 echo | sort
seq 1 10 | $PAR -j 3 echo | sort