Find broken symbolic links


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. find . -type l | (while read FN ; do test -e "$FN" || ls -ld "$FN"; done)

URL: http://scotgate.org/2007/03/04/howto-find-broken-symbolic-links-gentoo-linux-wiki/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.