home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / add2 / tf77.zip / TF77.DOC < prev    next >
Text File  |  1989-02-18  |  4KB  |  131 lines

  1. ===========================================================================
  2. TurboFIND                      Documentation                      TurboFIND
  3. ===========================================================================
  4.  
  5.  
  6. ■ INTRODUCTION
  7. --------------
  8.  
  9.  
  10. TurboFIND (TF) is a utility that allows you to find all occurrences of
  11. a file in all subdirectory of a specified disk.  It is the fastest
  12. file finder I have seen so far, faster than FINDIT, WHEREIS, SEARCH
  13. and Peter Norton's File Find. For example, on my disk, where 1022
  14. files reside in 114 directories, it is able to find a file in 1.59
  15. seconds. (12Mhz AT, 25ms drive, Adaptec controller, 688 kb/sec
  16. transfer rate, no caching).
  17.  
  18.  
  19. Files included in the TF77 archive:
  20.  
  21.    TF77.COM       TurboFIND 8086 version
  22.    TF77286.COM    TurboFIND 80286 version
  23.    TF77.DOC       TurboFIND documentation (this file)
  24.  
  25. Two versions of the program have been included. TF77 will run on any
  26. 8086 based machine, and TF77286 has been compiled with the 80286
  27. compiler switch set, making a smaller and faster executable that will
  28. run on any 80286/80386 machine, or any machine that has a V20/V30. You
  29. should rename the version you plan to use to something like TF, and
  30. delete the other one.
  31.  
  32.  
  33. ■ USAGE
  34. -------
  35.  
  36.  
  37. To use the program, enter:
  38.  
  39.   TF <filespec> [switches]
  40.  
  41. where:
  42.  
  43.   - <filespec> is any valid DOS file specification, including
  44.     wildcards, and drive specifier. If no filespec is specified, 
  45.     a help screen is displayed.
  46.  
  47.   - [switches] is only one of these, and is optional:
  48.     - /D : Find and delete files. You will be asked for confirmation
  49.            before deleting the files.
  50.  
  51.     - /L : Change directory where the first file found resides.
  52.  
  53.     - /S : Produce a short (as opposed to the default) display. 
  54.            A short display looks like this:  
  55.              C:\BIN\foobar.c
  56.              C:\BIN\tf.c
  57.              ...
  58.            The default output looks like this:
  59.            C:\BIN\
  60.                 foobar.c            256 bytes   1:09 am  Tue Aug  9 88
  61.                 tf.c             17,300 bytes   2:25 am  Mon Aug  8 88
  62.                 ...
  63.  
  64.  
  65.  
  66.  
  67. ■ EXAMPLES
  68. ----------
  69.  
  70.  
  71.   tf                ;display help screen.
  72.  
  73.   tf *.com         ;find all COM files on the default drive, using 
  74.                     ;default (long) output 
  75.  
  76.   tf r*.bin /s      ;find all files on the default drive matching r*.bin 
  77.                     ;using short (/S) output
  78.  
  79.   tf budget.wk1 /l  ;change directory where the first BUDGET.WK1 file is
  80.                     ;found.
  81.  
  82.   tf *.bak /d       ;find and delete all BAK files on the default drive.
  83.                     ;You WILL be asked for confirmation before deleting 
  84.                     ;files. If a file you want to delete is read-only, 
  85.                     ;you will be asked if you wish to delete it anyways.
  86.  
  87.   tf d:d??.txt      ;find all files matching d??.txt on the d: drive.
  88.                     ;TF only works on high capacity disks and hard disks
  89.                     ;having 16-bit FAT tables. Support for 360k disks will
  90.                     ;be added in the next version.
  91.  
  92.  
  93. ■ NOTICE
  94. --------
  95.  
  96.  
  97. The TurboFIND program is NOT public domain. If you find it fast and
  98. useful, you are required to register it with the author. Registration
  99. is a whopping $5.00. This will get you updates as they are made
  100. available.
  101.  
  102. You are authorized to distribute the program to friends, as long as
  103. all the files (documentation, READ.ME files (if any), and both COM
  104. files) are included and unmodified.
  105.  
  106. You are NOT permitted to change the program or its documentation in
  107. any way.
  108.  
  109. You may not bundle it with any other software or hardware.
  110.  
  111. The C source code (TurboFIND is written in Turbo C 2.0 (**)) is 
  112. available for $20.
  113.  
  114. Send registrations, suggestions and bug reports to:
  115.  
  116. Paul Giroux
  117. 81 Maisonneuve
  118. Dollard-des-Ormeaux (Quebec)
  119. CANADA  H9B 1K5
  120.  
  121. CompuServe 72007,3677
  122. FidoNet    1:167/106.0
  123.  
  124.  
  125.  
  126. (**) Turbo C is a registered trademark of Borland International.
  127. ===========================================================================
  128. TurboFIND                      Documentation                      TurboFIND
  129. ===========================================================================
  130. 
  131.