mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
11 lines
276 B
Bash
11 lines
276 B
Bash
#!/bin/bash
|
|
|
|
# Test --nice
|
|
echo '### Test --nice locally'
|
|
parallel --nice 1 -vv 'PAR=a bash -c "echo \$PAR {}"' ::: b
|
|
|
|
echo '### Test --nice remote'
|
|
stdout parallel --nice 1 -S .. -vv 'PAR=a bash -c "echo \$PAR {}"' ::: b \
|
|
| perl -pe 's/\S*parallel-server\S*/one-server/'
|
|
|