Hi,
Any pretty way to find broken links on the entire filesystem would be welcome however.
I have a script available for this:
#!/bin/bash # command line parameter would be the directory to search
for i in ` find $1 -type l `; do # feststellen, ob der link noch gueltig ist oder nicht file $i | grep -q broken if [ $? -eq 0 ] ; then echo "Broken link $i" fi done exit
Christian Volker
Technical Support Engineer