ln

Find broken symlinks - easy way

Need to find any broken Symlinks on your server? Here is a handy command:
 for i in `find /var/www/html -type l`; do [ -e $i ] || echo $i is broken; done

Syndicate content