home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / BEEHIVE / ZSUS / Z3HELP-3.LBR / P.LBR / PIPE.HZP / PIPE.HLP
Text File  |  2000-06-30  |  3KB  |  77 lines

  1. ;
  2.                                    PIPE.COM                                   
  3.  
  4.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  5.                1k (8)    C4B0  1.8        Rob Friefeld 1/88        Z3COM7
  6.  
  7.   1- Syntax  2- Usage  3- Examples of Use                                     
  8.  
  9.  
  10.    PIPE is a small (1k) file transfer utility intended as a RAM disk resident.
  11. PIPE uses the first 8000h of TPA.   No installation is needed.   Since most of 
  12. the logic is in the DOS, named directories under ZCPR3 will work.   Also, PIPE 
  13. is reentrant.
  14. :1
  15.  
  16.    Syntax:  pipe [du:|dir:]<afn> [du:|dir:][afn] [/o]
  17.  
  18.       i.e.  pipe <what> [where]
  19.  
  20.   Options:  [F]1..[F]4   - Select source file attribute F1..F4 to copy
  21.         W             - Wheel protect attribute (ZRDOS)
  22.         R             - R/O
  23.         S             - SYS
  24.         A             - ARC
  25.  
  26.   These options may be reversed with "~" or "-".
  27.             I             - Inspect before copy
  28.         N             - NO query before erase (even for R/O files!)
  29.   
  30.    Any number of options may be specified.   Any character other than these is 
  31. ignored.  (i.e. commas, extra slashes)
  32. :2
  33.  
  34. Usage:
  35.  
  36.    The syntax is different from PIP's,  i.e. the source file  is  named first,
  37. then  the destination.   Both source and  destination may  be  ambiguous  file 
  38. names.  (Wild card renaming of the destination can be dangerous to your mental
  39. health,  however.)   If the optional  destination is  omitted,  files  will be 
  40. fetched to the current DU:.
  41.  
  42.    If the destination file exists,  you will be  asked ERASE? (y/N/q).   No is 
  43. the  default answer.   A 'Y' will abort the copy and  a  'Q'  aborts  the run.  
  44. Attributes of the destination file are kept.  If the destination file does not
  45. exist, attributes of the source file are copied.
  46.  
  47.    If the  destination disk  is filled,  the incomplete copy is deleted  and a 
  48. disk  reset is  done.   (If this is not done,  DIR will still  report  0k free 
  49. space.)  Otherwise, PIPE does NOT do a disk reset.
  50. :3
  51.  
  52.  
  53. Examples of Use:
  54.  
  55.    a. B5>PIPE A0:*.Z80    (You enter...then PIPE prints...)
  56.      Copying --> A0: FILE1   .Z80 to B5:
  57.      Copying --> A0: FILE2   .Z80 to B5:
  58.      Copying --> A0: ANOTHER1.Z80 to B5:
  59.  
  60.    b. B5>GO THIS.FIL A0:THAT.FIL
  61.      Copying --> B5: THIS    .FIL to A0:THAT     .FIL
  62.  
  63.    c. A0>PIPE TEST.* ARC:WORKS.*
  64.      Copying --> A0: TEST    .Z80 to B15:WORKS   .Z80
  65.      Copying --> A0: TEST    .DOC to B15:WORKS   .DOC
  66.      Copying --> A0: TEST    .COM to B15:WORKS   .COM
  67.  
  68.  
  69.  
  70. Examples of Use (cont'd):
  71.  
  72.    d. A0>PIPE *.* A15: /F12S  
  73.          Copy only files marked with F1, F2, SYS
  74.  
  75.    e. A0>PIPE *.* A15: /-A1R  
  76.          Copy all NOT ARC, NOT F1, and R/W files
  77.