#!/bin/sh

i=1
while :
do
	echo "####### Running for $i time #######"
	wsrc -b1 -n10000 -z120

	i=`expr $i + 1`
done

