Tag Archives: dsh

Everyone and his dog has their multihost ssh so why not me?

I call this sshtomany: #!/bin/bash cmd=”$*” cmd=”${cmd/#* . /}” [ “$cmd” = “$*” ] && echo “Usage: $0 [HOSTS] . [COMMAND]” && exit 127 while [ “$1” != . ] && ssh $1 -vt $cmd ; do echo Success at … Continue reading

Posted in GNU/Linux | Tagged , , , , | 4 Comments