mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
12 lines
204 B
Bash
12 lines
204 B
Bash
#!/bin/bash
|
|
|
|
rm -rf tmp 2>/dev/null
|
|
cp -a input-files/testdir2 tmp
|
|
cd tmp
|
|
|
|
# tests if -c (cat | sh) works
|
|
perl -e 'for(1..25) {print "echo a $_; echo b $_\n"}' | parallel -c 2>&1 | sort
|
|
|
|
cd ..
|
|
rm -rf tmp
|