#!/bin/sh

NUM=100

while [ 1 -eq 1 ] 
do 
	for ((a=1; a <= NUM ; a++))  # Double parentheses, and "LIMIT" with no "$".
	do
  		echo -n "$a "
		tests/sqlite-test.sh &
	done 
	#tests/sqlite-test.sh 
done


syntax highlighted by Code2HTML, v. 0.9.1