Re: How to search for broken symbolic links?

2010-02-15 Thread Eric Blake
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?

2010-02-15 Thread Peng Yu
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?