#!/bin/csh -f
#!/bin/csh -fxv
if ( x$argv[1] == "x-a" ) then
	echo "found -a in argv[1]"
	if ( $argv[2] == "Granny-Smith" ) then
		echo "found Granny Smith too"
	endif
else if ( x$argv[1] == "x-b" ) then
	echo "found -b in argv[1]"
	if ( $argv[2] == "Chiquita" ) then
		echo Chiquita
	endif
endif
if ( x$argv[1] == "x-a" && $argv[2] == Macoun ) then
	echo "I love Macoun apples"
endif
#exit
#Try this with two numbers and two words:
if ( $argv[1] < $argv[2] ) then
	echo $1 is less than $2
else if ( $argv[1] == $argv[2] ) then
	echo $1 equals $2
else
	echo $1 is more than $2
endif
