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
ls -l | grep lrw
shows only symlinks (files and directories). Not sure how to get them colorful, though.
ls -lad .*
shows only hidden files/directories
ls -l | grep drw
shows directories only.