mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-23 06:27:55 +00:00
10 lines
218 B
Bash
10 lines
218 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'
|
||
|
parallel --nice 1 -S .. -vv 'PAR=a bash -c "echo \$PAR {}"' ::: b
|