Find and Remove Broken Symbolic Links

find -L ${directory} -type l # remove the broken links find -L ${directory} -type l -print0 | xargs -0 rm

Leave a Reply