home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / au.zip / AU.DOC next >
Text File  |  1994-03-31  |  2KB  |  57 lines

  1. Allen Utilities 31 March 1994, (c) Copyright John J. Allen 1994. (john.allen@aldus.com)
  2.  
  3. *** LICENSE ***
  4. The programs are freeware and are provided as is with no warranty whatsoever etc... 
  5. Aldus Corporation is not responsible in an way nor does it have any connection with these
  6. programs.
  7. I hereby grant you the recipient the non-exclusive rights to copy these
  8. programs freely, with the provisio that the following conditions are met.
  9.  
  10. The ZIP file is distributed intact 
  11. Copyright messages are not modified.
  12. No fee is charged other than that required for media etc..
  13.  
  14. Please do e-mail me with any suggestions or bugs. 
  15. If you're mad enough to want to send money for these utilities I won't stop you!!
  16.  
  17. The following files are included with this release.
  18. FF.EXE                  Find Files
  19. RF.EXE                  Remove Files
  20. FS.EXE                  File Size
  21. WHICH.EXE               Which program
  22. STRINGS.EXE             Display strings from binaries
  23. PMDU.EXE                PM Disk Usage
  24. DE.EXE                  Environment displayer
  25. BANNER.EXE              Text Mode Banner Generator
  26.  
  27. Of all the above only the File Finder really needs some examples so here they are.
  28.  
  29. find all *.cpp files on the current drive and display them using a list program
  30. ff \*.cpp /exec:"list {fullname}"
  31.  
  32. find all *.cpp files under \cpp\src one level deep and create a .cmd file to compile them
  33. ff \cpp\src\*.cpp /tree:1 /print:"bcc -c {fullname}\n" > makeall.cmd
  34.  
  35. find all files on all drives that are 0 bytes long
  36. ff \* /size:=0 /print /a /q /fi
  37.  
  38. find all files on all drives that were written to on 31.3.1994 & not since
  39. ff \* /date:=31.3.1994 /print /a /q /fi
  40.  
  41. find all files on all drives that were written to on or after 31.3.1994
  42. ff \* /date:+=31.3.1994 /print /a /q /fi
  43.  
  44. the comparison operators following the /size: & /date: options are as follows
  45. !=      not equal
  46. -=      less than or equal
  47. +=      greater than or equal
  48. =       equal
  49. -       less than
  50. +       greater than
  51.  
  52. the date format must be as follows (ie. the year must be four digits)
  53. ff \*.exe /date:=12.3.1994 /print
  54.  
  55. END
  56.  
  57.