#!/bin/csh -f
@ i = 0
while ( $i < $1 )
	@ i++
	sleep 1
	echo "$1 -- $i"
end
