#!/bin/csh -f
if { sun } then
    test -h $*
    set xx = $status
else
    ls -ld $* | egrep -s '^lrwxrwxrwx'
    set xx = $status
endif
exit( $xx )
