# /usr/local/bin/fullpath
#
#			Get the full path of all files on system, this script
# 			was written to work with 'findname' script, to easily
#			find the name of any file on system without using
#			'find', and it is so much faster.  This script should
#			be put in crontabs/root to have it execute several
#                       times a day. 
#
#			ver 1.11, 13 February 1988
# 
#			UUCP:   cmanis@csoftec
#
cd /
du -a | sed 's/.*	\.//' > /usr/local/bin/fullpath.names
#
