aboutsummaryrefslogtreecommitdiff
path: root/bin/sra.sh
blob: 36a673e1753784fe093b5b3c3a46a9ef97f2737c (plain) (blame)
1
2
3
4
5
6
7
8
# Run ssh(1) with an optional command on every host in sls(1df) output
# Use FD3 to keep a reference to the script's stdin for the ssh(1) calls
exec 3<&0
sls | while read -r hostname ; do
    printf 'sra: %s\n' "$hostname"
    # shellcheck disable=SC2029
    ssh -qt -- "$hostname" "$@" <&3
done