Displaying 1 result from an estimated 1 matches for "ccn5".
Did you mean:
cc5
2005 Aug 31
2
performance problem of using parallel rsync to stage data from 1 source to multiple destination
...ccn2"
fi
if [ "$1" -eq "4" ] ; then
LIST="ccn2 ccn3 ccn4"
fi
if [ "$1" -eq "6" ] ; then
LIST="ccn2 ccn3 ccn4 ccn7 ccn6"
fi
if [ "$1" -eq "8" ] ; then
LIST="ccn2 ccn3 ccn4 ccn5 ccn6 ccn7 ccn8"
fi
fi
echo "nodes: $LIST"
date
for dest in $LIST
do
time rsync -az /tmp/disk.img $dest:/tmp/&
done
wait
date