mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
f085a37a40
-v now only show the command to be run. Use -vv to see the surrounding ssh wrapping. --workdir implemented. Spelling mistakes.
18 lines
372 B
Bash
18 lines
372 B
Bash
#!/bin/bash
|
|
|
|
SERVER1=parallel-server3
|
|
SERVER2=parallel-server2
|
|
|
|
echo '### Test $PARALLEL'
|
|
echo | PARALLEL=--number-of-cpus parallel
|
|
seq 1 2 | PARALLEL="-S$SERVER1
|
|
-Sssh -l parallel $SERVER2
|
|
-j1" parallel -kvv echo
|
|
|
|
echo '### Test ~/.parallel/config'
|
|
echo "-S$SERVER1
|
|
-Sssh -l parallel $SERVER2
|
|
-j1" > ~/.parallel/config
|
|
seq 1 2 | parallel -kvv echo
|
|
rm ~/.parallel/config
|