I have to copy a file to different servers almost every day. What I usually do is:
scp filename user@destinationhost:/destination/folder
I run this same command changing the destination host over and over again until I finish all the servers. What is the best (and fastest) way to transfer the same file to those different servers?
Another drawback is that I need to enter the password over and over again, but using rsa is not an option since several people can connect to the source server.
Edit - I found loop in commandlinefu that may do the trick:
for h in host1 host2 host3 host4 ; { scp file user@$h:/destination_path/ ; }