9 lines
89 B
Bash
Executable File
9 lines
89 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cmd="$*"
|
|
|
|
echo "Running on hosts: $cmd"
|
|
|
|
pssh -h "$hosts_file" -t 0 "$cmd"
|
|
|