aboutsummaryrefslogblamecommitdiff
path: root/bin/sta.sh
blob: 5736842a466baf895f6190112dfc07ede818b3eb (plain) (tree)
1
2
3
4
5
6
7
                                                                             

                                                                             
                               


                                                      
# Print list of sls(1df) hostnames that exit 0 when a connection is attempted
# and the optional given command is run. Discard stdout, but preserve stderr.
sls | while read -r hostname ; do
    # shellcheck disable=SC2029
    ssh -nq -- "$hostname" "$@" >/dev/null || continue
    printf '%s\n' "$hostname"
done