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 / CPM / ZCPR33 / A-R / CONCAT03.LBR / CONCAT03.DZC / CONCAT03.DOC
Text File  |  2000-06-30  |  2KB  |  56 lines

  1.  
  2.                              CONCAT
  3.                            Version 0.3
  4.  
  5.                           Gene Pizzetta
  6.                        September 19, 1989
  7.  
  8.  
  9. CONCAT concatenates two or more source files into a destination 
  10. file, similar to PIP.  For ZCPR3 only.
  11.  
  12. USAGE:
  13.  
  14.      CONCAT {dir:}outfile={dir:}infile{,{dir:}infile{, ...}} {/option}
  15.  
  16. Any file without a DU or DIR specification is assumed to be on 
  17. the current drive/user.  The default is text file mode, checking 
  18. for a CP/M end-of-file character (^Z).  The only option at 
  19. present is 'O', which puts CONCAT is object file mode so ^Z's are 
  20. ignored.
  21.  
  22. CONCAT requires an output file and at least one input file.  
  23. Actually, it can be used as a simple file-copy utility, but 
  24. that's not its purpose.  The same filename may be given 
  25. repeatedly in the input file list.  An equal sign separates the 
  26. output file from the input files.  Commas separate multiple input 
  27. files.
  28.  
  29. While the equal sign and commas are required, they may be 
  30. separated from the filenames by one or more spaces.  For example,
  31.      concat newfile.txt=file1.txt,file2.txt,file3.txt,file4,txt
  32. works the same as
  33.      concat newfile.txt = file1.txt, file2.txt ,file3.txt , file4.txt
  34.  
  35. A filename cannot begin with a slash unless it is preceded by a 
  36. DU or DIR specification.
  37.  
  38. If an error occurs, such as an input file not found, the 
  39. incomplete output file is erased.  If another file has the same 
  40. name as the output file, it will be renamed to filetype BAK.  
  41. CONCAT initially creates the output file with a filetype of $$$.  
  42. Any existing BAK is erased, the new BAK file created, and the 
  43. output file renamed to the correct filetype after the copy is 
  44. successfully completed.
  45.  
  46. An invalid option (anything other than "O") will be ignored.
  47.  
  48. To report bugs or make suggestions:
  49.                          Gene Pizzetta
  50.                          481 Revere Street
  51.                          Revere, MA 02151
  52.  
  53.                          Newton Centre Z-Node:  (617) 965-7259
  54.                          Lilliput Z-Node:  (312) 649-1730
  55.                          Voice:  (617) 284-0891
  56.