( for dir in /bin /sbin /usr/bin /usr/sbin /usr/libexec /usr/libdata; do find $dir -mtime +2 -type f -xdev -print; find $dir -mtime +2 -type l -xdev -print; done ) >/tmp/remove
vi /tmp/remove
REVIEW FILES TO REMOVE MANUALLY
cat /tmp/remove | xargs rm -f
( for dir in /lib /usr/lib; do find $dir -mtime +2 -type f -xdev -print; find $dir -mtime +2 -type l -xdev -print; done ) | grep -v /usr/lib/compat >/tmp/move
vi /tmp/move
REVIEW FILES TO MOVE MANUALLY
for x in `cat /tmp/move`; do chflags noschg $x; mv $x /usr/lib/compat/; done
cd /usr/src; make BATCH_DELETE_OLD_FILES=YES delete-old delete-old-libs