Re: How to search for broken symbolic links?
According to Peng Yu on 2/15/2010 6:50 PM: > I don't find which option to use to search for broken symbolic links. > Could somebody let me know if there is such an option? > Yes. Here's the POSIX way: find . -L -type l Or, if you want to use GNU extensions: find -follow -lname \* -- Don't w
How to search for broken symbolic links?
I don't find which option to use to search for broken symbolic links. Could somebody let me know if there is such an option?