#!/bin/bash
#
# ./push filename remote-location
# 
# If you forget remote-location will default to /root
# on remote machine
#
for i in `cat pcs`
do
    echo "$i"
    echo "------"
	scp -c blowfish $1 root@$i:$2
done
