#!/bin/ksh
#
#	How to stress the network?
#

remote=cl2devk
ncopy=4

while [ $ncopy -gt 0 ]
do
	(while true
	 do
		rsh $remote -l guest "tar cf - /" > /dev/null 2>&1
	 done) &
	let "ncopy=$ncopy-1"
done

#
#	OK.
#

echo "netstress started"
