#!/bin/sh

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

	i=`expr $i + 1`
done

