#!/bin/sh

i=1
while :
do
	echo "####### Running for $i time #######"
	xsink -b1 &
	xsrc -b1 -n50000 -z10  

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

