bsd

Find the files not in use in Unix

Friday, February 10th, 2006

find . -name “*” -exec /usr/sbin/fuser {} 2>&1 \; | grep ‘: *$’

Keep on coding