home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / CMDS / find_1_1_5.lzh / find.rnote < prev   
Text File  |  1993-10-31  |  1KB  |  35 lines

  1. Release Notes:
  2.  
  3. v1.1.4 09.05.93 added -newer and !-newer
  4.                 use -newer to find files newer than specified file
  5.                 use !-newer to find files older than specified file
  6.  
  7.                 Examples:
  8.  
  9.                 Print files in current dir (and sub-directories) that
  10.                 are newer than makefile.
  11.  
  12.                   find . -newer makefile -print
  13.  
  14.                 Print filename for all files on /h0 that are older than
  15.                 my_file.
  16.  
  17.                   find /h0 !-newer my_file -print
  18.  
  19. v1.1.5 09.18.93 added -exec and -ok
  20.                 use -exec instead of -print to execute a command on match
  21.                 -ok will ask if it is ok to run command
  22.  
  23.                 Examples:
  24.  
  25.                 Sort all directories on /h0.
  26.  
  27.                   find /h0 -type d -exec sortdir {} \;
  28.  
  29.                 {} is replaced by the search string.
  30.                 \; is not required and is included for compatibility with
  31.                    the Unix command.  Also \ is the shell escape character
  32.                    which only has meaning with Unix style shells (ie. bash)
  33.                    and is used to escape the ; from the shell, because the
  34.                    Unix find requires the ;.
  35.