I'm using this command a lot to run a script on remote servers:
ssh root@servername.eu < ./remotescript.sh
It works quite well. Now that there are more servers I'm wondering how I could use a list of these servers with that command... like this for example:
ssh root@$server.list < ./remotescript.sh
What would be the easiest way to do this?
-Sam