ssh/ssh-multirun
BrainwreckedTech c80dca759c First sync
2019-08-23 20:31:57 -04:00

11 lines
215 B
Bash
Executable File

#!/usr/bin/env sh
COMMAND="${1}"
shift
while [ "${#}" -gt 0 ]; do
printf '%40s\r%s\n' '' "${1}" | tr ' ' '-'
[ "${1}" = "local" ] && { bash -c "${COMMAND}"; true; } || ssh -t "${1}" "${COMMAND}"
shift
done