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
Improving a little on the accepted answer given by @ChristopheD (coudnt comment on the accepted answer since I dont have enough reputation)
I use an alias
findsymlinks
where the alias is
alias findsymlinks "find \!:1 -maxdepth \!:2 -type l -print | xargs ls -l --color=auto"