问题
How can one recursively find all the symbolic links in a directory in Unix?
Something like this
find . -name *.o
but for symbolic links along the lines of
find . -type symlink ???
回答1:
find . -type l
Should work.
http://linuxmanpages.com/man1/find.1.php
来源:https://stackoverflow.com/questions/4611595/find-symbolic-links-in-a-directory