Basically I want do the following:
ls -l[+someflags]
(or by some other means) that will only display files that are symbolic links
so t
For (t)csh:
ls --color=always -ltra | grep '\->'
(This is simply pbr's answer but with the hyphen escaped.)
Mac OSX
On OSX, ls
works differently, so add this to your ~/.cshrc
file:
setenv CLICOLOR_FORCE 1 # (equivalent of Linux --color=always)
And then call:
ls -G -ltra | grep '\->' # (-G is equivalent of ls --color)