#!/bin/csh -f
#!/bin/csh -fvx
# Intentional bug -- No testing for number of args
while ( "$1" =~ -* )
	echo -n "$1 "
	echo is a flag argument
	shift
end
while ( $#argv )
	if ( "$1" =~ -*) then
		echo -n "$1 "
		echo is an illegal flag argument
	else
		echo "I'll process $1"
	endif
	shift
end
