9jun/110
How to find “dead” symbolic links ?
How to find "dead" symbolic links ?
Simply you could run the following command, this has been tested on FreeBSD 5/6/7/8. So I don't expect any problems on other operating systems.
find / -type l ! -exec test -r {} \; -print




