mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
8 lines
216 B
Bash
8 lines
216 B
Bash
#!/bin/bash
|
|
|
|
cat <<'EOF' | sed -e s/\$SERVER1/$SERVER1/\;s/\$SERVER2/$SERVER2/ | stdout parallel -j8 -k -L1
|
|
echo '### --filter-hosts --slf <()'
|
|
parallel --nonall --filter-hosts --slf <(echo localhost) echo OK
|
|
|
|
EOF
|