Originally posted by: orphy
Here's one way to do it.
========================
name=/home/xxx/A.sh
rmtsvr="host1 host2 host3 host4 etc etc etc"
for box in $rmtsvr
do
ssh $box
scp -p $name $box:/.../my_home
done
========================
If you want to automate this at a regular interval, put this in a script
and try using cron.
Orphy