home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR24 / FIT20.ZIP / FIT.DOC next >
Text File  |  1993-06-10  |  3KB  |  84 lines

  1. FIT Version 2.0 (C)1990-1993 Turgut Kalfaoglu, <TURGUT@TREARN.BITNET>
  2.  
  3. Shareware Evaluation Copy
  4. -------------------------
  5.  
  6. FIT 2.0 is a shareware product. This means that the author allows you up
  7. to 15 days to evaluate and decide if this product is useful to you. At
  8. the end of this period, if you are satistified with FIT, you must
  9. register it by sending your $10 donation to the address shown below:
  10.  
  11.    Turgut Kalfaoglu
  12.    1378 Sok. 8/10
  13.    Alsancak, Izmir 35210
  14.    Turkey
  15.  
  16. Source code is available to registered users: Enclose diskette and $10
  17. to cover shipping charges. Personal checks (U.S. banks) and Eurochecks
  18. must be made out to "Turgut Kalfaoglu".
  19.  
  20. Synopsis
  21. --------
  22.  
  23. FIT allows you to copy all the files matching to your specifications to
  24. any number of diskettes. FIT will arrange the files so that there will
  25. be very little free space left at each diskette. When a diskette gets
  26. full, it will prompt you for another. It will resume as soon as the new
  27. diskette is introduced.
  28.  
  29. Diskettes "fed" to FIT need not be totally empty: They can contain other
  30. files - FIT will simply use up whatever remaining space is available on
  31. that diskette.
  32.  
  33. Normally FIT does not stop the diskette drive between diskette changes
  34. to save time. Using the /P option, you can tell it to pause each time a
  35. new diskette is needed. If /P is omitted, it will sense the new diskette
  36. as soon as it is introduced.
  37.  
  38. FIT is a true 32-bit application that benefits from the multitasking
  39. abilities of OS/2. It uses a separate thread to do the "writing",
  40. freeing the reading thread to read ahead of time. This allows fastest
  41. copying times, especially for systems where multiple I/O paths are
  42. available.
  43.  
  44. The two active threads can be seen in action while FIT runs. While one
  45. thread reads ahead, the second thread writes the information to
  46. diskette. This is accomplished by the use of double-buffers. In other
  47. words, each time new data is read, one of the two buffers is chosen to
  48. read the data into, while the other buffer is being used by the writing
  49. thread. With this scheme, the writing thread never has to wait for more
  50. data to arrive, since read thread always has one buffer-full of data
  51. already loaded.
  52.  
  53. Usage
  54. -----
  55.  
  56. FIT is similar to OS/2's COPY command, except the last parameter must be
  57. a drive letter. Since FIT is intended to be used with diskette drives,
  58. no path specification is permitted for the target parameter.
  59.  
  60.         FIT [options] source_filenames destination_drive
  61.  
  62. Options are:
  63.     /P    Pause between diskettes. This option stops drive motor
  64.           between diskettes.
  65.     /M    Move file. After each successful file copied, FIT erases
  66.           the file from its origin.
  67. These options can also be made default by assigning an environmental
  68. variable to them, such as:
  69. SET FITCMD=/P
  70. in your CONFIG.SYS, would make the pausing between diskettes the
  71. default.
  72.  
  73. Usage Examples:
  74.                 FIT *.EXE A:
  75.                 FIT *.EXE *.DOC C:\OS2\*.* A:
  76.                 FIT /M /P \*.* B:
  77.  
  78. Release History:
  79. ----------------
  80.  
  81. 1991 - Initial release of FIT 1.0 for DOS
  82. 1992 - FIT 1.1 for DOS and OS/2
  83.  
  84.