#!/bin/csh -f
foreach i ($*)
    if { isasymlink $i } then
	rm $i
    else
	echo $i is not a symlink
    endif
end
