Search This Blog

Wednesday, November 24, 2010

Find broken symlinks in linux

In order to find broken links in linux, we will use find command with some shell scripting

for i in `find ./ -type l`; do [ -e $i ] || echo $i; done

No comments:

Post a Comment