home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / sosutl11.zip / filefind.man < prev    next >
Text File  |  1993-08-18  |  2KB  |  64 lines

  1. FileFind
  2.  
  3. Description
  4.  
  5.     FileFind--whereis-like find file utility written completely in
  6.     REXX.
  7.  
  8. Usage
  9.  
  10.     [D:\] filefind [PATH\]FILENAME ... [ /h /b /? ]
  11.  
  12.     FileFind finds files under PATH if that is specified, or the
  13.     current directory (= `.') if it isn't. Multiple command line
  14.     arguments are allowed.
  15.  
  16.     Options:
  17.  
  18.     /h      find hidden and system files too
  19.     /n      brief format: display only file names
  20.     /?      display help page and quit
  21.  
  22. Examples
  23.  
  24.     Note the prompt (ie. current directory info) in the following
  25.     examples!
  26.  
  27.     [D:\os2] filefind *.inf
  28.         ; Finds all *.inf files under D:\os2
  29.  
  30.     [D:\] filefind \os2\*.inf
  31.         ; Does the same as the preceding
  32.  
  33.     [D:\] filefind c:\bin\*.exe
  34.         ; Finds all *.exe files under C:\bin
  35.  
  36.     [D:\os2] filefind DLL\*.inf apps\*.inf
  37.         ; Finds all *.inf files under D:\os2\DLL and D:\os2\apps
  38.  
  39. Note
  40.  
  41.     FileFind displays file dates and times in the national format,
  42.     which is found with a SysIni() call to `os2.ini'. However, this
  43.     seems to be causing troubles now and then--sometimes SysIni()
  44.     returns insane results, like `0' as the date or time separator.
  45.     IF YOU ARE HAVING PROBLEMS WITH THIS, remove all date and time
  46.     formatting lines from the program, and change the following
  47.     line:
  48.  
  49.         ok = SysFileTree(Word(find, i), files, "fst", "*--*-")
  50.  
  51.     to
  52.  
  53.         ok = SysFileTree(Word(find, i), files, "fs", "*--*-")
  54.  
  55.     filefind will then display dates and times in the American
  56.     formats (MM/DD/YY and HH:MM{am|pm}, respectively) which are
  57.     insane but work fine.
  58.  
  59. Version
  60.  
  61.     FileFind v1.4
  62.     Copyright (C) SuperOscar Softwares, Tommi Nieminen 1993
  63.  
  64.