#!/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 $2 "root@$i:.$3"  
done
