mklist
:
# mklist - make the master file list.  note that if 
# there is not enough room on the file system for this 
# file you can simply pipe the results on through to the 
# progs. 

# output file
mlist=/usr/stevei/c/stat/new.list

# starting directory
start=/

find $start -print | stat -oidlugpsanw - > $mlist

