home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / UTILS1 / FIND_FJ.ZIP / READ.ME < prev   
Text File  |  1994-01-06  |  3KB  |  117 lines

  1. ----------------------------------------------------------------------
  2. The FJD Underline Toolkit     (c) 1990-94  F.Jorga All Rights Reserved
  3. ----------------------------------------------------------------------
  4. PROGRAM     : _FIND
  5. VERSION     : 3.1 / 1.1.94
  6. AUTHOR      : Frank Jorga
  7. CONTACT     : CIS: 100325,3500
  8.  
  9. This Program is Shareware. It is just like it is.
  10. The Author warrants for nothing. You use the software at your own risk.
  11. You may use this as long as you (or your Computer) wants
  12. (whatever happens first). Feel encouraged to give this program
  13. to your friends, but make sure, this file is enclosed.
  14.  
  15. As Licence Fee i *suggest* a CIS mail somewhat like:
  16.  
  17. TO: Frank Jorga, 100325,3500
  18. I (like/dislike) the program cause ...
  19.  
  20. Then you are a registrated user and i've got some input <g>
  21.  
  22. Using this program in a business site requires further negotiating.
  23.  
  24. Support is not provided unless the idea is of technical interest.
  25.  
  26.  
  27. Now here is how it works:
  28.  
  29. _FIND serves to search and process files in three areas:
  30. 1) on all drives (-a)
  31. 2) on the current drive
  32. 3) on a path on the current drive (-p)
  33.  
  34. You can limit focus:
  35.  
  36. 1) only selected date regions (-dg, -de, -dl)
  37. 2) only files which contain a wordfragment (-t)
  38.  
  39. As it is almost impossible to remember the parameter structure
  40. the program explains itself when you call it without parameters.
  41.  
  42.  
  43. Examples:
  44.  
  45. Find all files *.exe on the current drive
  46.  
  47.     _find *.exe
  48.  
  49.  
  50. Fild all files *.c and *.h on the current drive
  51.  
  52.     _find *.[ch]
  53.  
  54.  
  55. Find all files *.c on current drive and list with pathnames
  56.  
  57.     _find *.c -a -l
  58.  
  59.  
  60. Delete all files *.bak on the current rive
  61.  
  62.     _find *.bak -s"del $$"
  63.  
  64.  
  65.  
  66. Save all available basic-Sources to a disk
  67.  
  68.     _find *.bas -a -s"copy $$ a:"
  69.  
  70.  
  71. Save all *.c files in the current tree to *.bak
  72.  
  73.     _find *.c -p. -s"copy $$ $.bak"
  74.  
  75.  
  76. Fild all files *.bat on all drives which contain the word 'smartdrv'
  77.  
  78.     _find *.bat -a -tsmartdrv -s"type $$"
  79.  
  80. More than one fragment is not possible in the current version.
  81. Search is case-sensitive.
  82.  
  83.  
  84. Find all files modified or created after the 1.12.1993
  85.  
  86.     _find * -dg1.12.1993 -l
  87.  
  88.  
  89. Save all files to disk modified today. Today in my case is 6.1.92.
  90.  
  91.     _find * -de6.1.1994 -a -s"copy $$ a:"
  92.  
  93.  
  94. If you are not common to the wildcardnotation of unix, and you wish to
  95. go into hard stuff like deleting lots of files, i strongly recommend to
  96. list affected files first and add the system command later. This gives
  97. you a chance to check out first.
  98.  
  99.     _find * -s"del $$"
  100.  
  101. for example has a function like the unix "rm -r" which wipes the
  102. whole disk. Anyway in some cases this might be just what you want to do.
  103. If you are not 100% sure about what you are doing limit the system
  104. commands to TYPE and COPY
  105.  
  106.  
  107. IMHO the useage of this program is a little cryptic but the additional
  108. struggle with parameters pays off well. This program adresses the
  109. professional user and programmer.
  110.  
  111. Good Luck !
  112. Thanks for downloading the software. Nice to meet you.
  113. 6.1.1994
  114. Frank Jorga
  115. CIS 100325,3500
  116.  
  117.