home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / utils / sysutl / 1kutils3.lbr / PIPE17.DZC / PIPE17.DOC
Text File  |  1987-11-15  |  2KB  |  49 lines

  1. Program:    PIPE   File Transfer Utility     PUBLIC DOMAIN
  2. Author:        Rob Friefeld   Long Beach, CA
  3. Purpose:    Small (1k) program intended as RAM disk resident
  4. Usage:        pipe [du:|dir:]<afn> [du:|dir:][afn]
  5.         i.e.  pipe <what> [where]
  6. Assembly:    Requires Z80 machine and assembler.
  7. Version:    1.5   2/87
  8. Version:    1.6   8/87
  9.  
  10. Version:    1.7   10/87 
  11.     - R/O files not handled at all in previous version
  12.     - Frequent check for ^C to abort operation
  13.  
  14.     This utility is a fast file copier that uses full TPA buffering.
  15. The syntax is different from pip's, i.e. the source file is named first,
  16. then the destination.  Both source and destination may be ambiguous file
  17. names.  (Wild card renaming of the destination can be dangerous to your
  18. mental health, however.)  If the optional destination is omitted, files
  19. will be fetched to the current DU:.
  20.  
  21.     If the destination file exists, you will be asked ERASE? (y/N/q).
  22. No is the default answer.  A 'Y' will abort the copy and a 'Q' aborts the
  23. run.
  24.  
  25.     If the destination disk is filled, the incomplete copy is deleted
  26. and a disk reset is done.  (If this is not done, DIR will still report
  27. 0k free space.)  Otherwise, PIPE does NOT do a disk reset.
  28.  
  29.  
  30.     No installation is needed.  Since most of the logic is in the DOS,
  31. named directories under ZCPR3 will work.  Also, PIPE is reentrant.
  32.  
  33.  
  34. EXAMPLES:
  35.  
  36.   B5>PIPE A0:*.Z80    (You enter...then PIPE prints...)
  37.     Copying --> A0: FILE1   .Z80 to B5:
  38.     Copying --> A0: FILE2   .Z80 to B5:
  39.     Copying --> A0: ANOTHER1.Z80 to B5:
  40.  
  41.   B5>GO THIS.FIL A0:THAT.FIL
  42.     Copying --> B5: THIS    .FIL to A0:THAT     .FIL
  43.  
  44.   A0>PIPE TEST.* ROOT:WORKS.*
  45.     Copying --> A0: TEST    .Z80 to A15:WORKS   .Z80
  46.     Copying --> A0: TEST    .DOC to A15:WORKS   .DOC
  47.     Copying --> A0: TEST    .COM to A15:WORKS   .COM
  48.  
  49.