#!/bin/sh

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

	i=`expr $i + 1`
	wait
	sleep 2
done

