#!/usr/bin/ksh
integer x=1
while [[ $x -lt 3000 ]]
do
	touch xx${x}
	x=x+1
done