#!/bin/csh -f
onintr -
set a=2
while ( $a < 21 )
	echo $a; @ a = $a + 2 ; sleep 2
end
