Re: Control Multiple Servers >
> I usually use something like this (untested and off the top of my
> feverish head):
>
> #!/bin/ksh
>
> cmd=$1
> shift
> hosts=$@
>
> for host in $hosts
> do
> ssh -l $host $cmd
> done
>
Thanks. Unfortunately, we don't have the ssh daemon running. Everything is
telnet here. |