#!/bin/sh

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

	i=`expr $i + 1`
done

