Wednesday, August 3, 2011

Ferg's gaff – HOWTO Find broken symbolic links – Gentoo Linux Wiki

Ferg's gaff – HOWTO Find broken symbolic links – Gentoo Linux Wiki

HOWTO Find broken links – Gentoo Linux Wiki

I was trying to find some broken links. however, although using
find . -type l

shows all links, it does nto use the cool flashing RED that BASH can do to shwo a broken links. So doing a quick Google turned me to this Gentoo howto: Nice n easy!
find . -type l | (while read FN ; do test -e "$FN" || ls -ld "$FN"; done)


...

Connie says: Comments on Ferg's gaff are also very instructive!)

No comments:

Post a Comment