Find all the symbolic links in a directory:
find /bin/ -name "*" | sort | xargs file -N | grep symbolic | sed 's/ symbolic link to//'
Find all the symbolic links in a directory:
find /bin/ -name "*" | sort | xargs file -N | grep symbolic | sed 's/ symbolic link to//'