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
Find all the symbolic links in a directory:
ls -l `find /usr/bin -maxdepth 1 -type l -print`
For the listing of hidden files:
ls -ald .*