Random thoughts about Linux
find / -type l ! -exec test -r {} \; -print
find . -type l | while read i ; do test -e $i || ls -l $i; done
No comments:
Post a Comment