home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume1 / 8707 / 32 / README < prev    next >
Text File  |  1990-07-13  |  2KB  |  39 lines

  1.  
  2.      fsfilt - filesystem filter for find (System V).
  3.  
  4.      This program is intended for machines without a -mount option 
  5.      on their find(1) command.  We use this program for doing backups, 
  6.      when we do not want find to cross mountpoints in the directory 
  7.      structure.  This program will pick up the current working 
  8.      directory, read the mount table (/etc/mnttab on system V machines) 
  9.      and build a list of directories that should NOT be backed up.
  10.  
  11.     This program is inteneded to have find(1) output piped into it.  
  12.     Each filename is examined, and if it does not contain references 
  13.     to any of the children filesystems of the current filesystem, if 
  14.     any, then the filename is printed on standard output, otherwise 
  15.     it is trashed.
  16.  
  17.      An example command would be:
  18.         find . -print | fsfilt | cpio -ocB > /dev/rmt1
  19.  
  20.      In addition to children filesystems, the tmp directory in both / 
  21.     and /usr are not backed up.  This dependancy is hardcoded into the 
  22.     source.
  23.  
  24.     An example of how this program is used is given in the file
  25.     ./backup.  This is the shell script which we use to backup
  26.     our machine each week.
  27.  
  28.     This source is copyright (c) 1987 by Mark H. Colburn.
  29.     Permission is hereby given to use or modify this program for
  30.     any non-commercial purpose.  No gaurentee of fitness, or 
  31.     suitability for any purpose is expressed, or implied.
  32.     (There, have I covered my butt sufficiently? :-)
  33.  
  34.     Please send any enhancements, comments or bugs to the author.
  35.  
  36.     Mark H. Colburn 
  37.         EMS/McGraw-Hill
  38.     (mark@ems.mn.org)
  39.