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 bash: This provides a nice output.
sl=`find -L /path/to/target -xtype l`; for links in $sl; do ls --color=always -ltra $links; done | sed 's/^/ /'