home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / cpm / gendoc / files.tzt / FILES.TXT
File List  |  1988-01-30  |  3KB  |  71 lines

  1. FILES
  2. by Editor, MCKUG, August 1987
  3.  
  4. (Tips on copying, printing, combining files for CP/M & DOS)
  5.  
  6. Direct Keyboard Manipulation of Files and Printer:  Possibilities
  7. here are much greater than just TYPE FILENAME.EXT.  I keep
  8. confusing how to do some of these things so I have gathered them
  9. together here for reference:
  10.  
  11. File Creation:  To type directly from the command line to a new
  12. file: 
  13.  
  14. In CP/M:    type PIP FILENAME.EST=CRT:<cr> (or CON:<cr>).  Then
  15. type the text, entering CR and Line Feed at the end of each line. 
  16. End with Ctrl-Z, and there is your new file.
  17.  
  18. In MS-DOS:  type COPY CON FILENAME<cr>.  Press enter at the end
  19. of each line, end with Ctrl-Z.  These shortcuts are very
  20. practical for very short files, such as batch files.
  21.  
  22.  
  23. FILE CONCATENATION:  To combine 2 or more files into one file:
  24.  
  25. In CP/M:    PIP NEWNAME=OLDNAME1,OLDNAME2  (and  ,OLDNAME3 etc.
  26. if desired).
  27.  
  28. In MS-DOS:  COPY OLDNAME1+OLDNAME2 NEWNAME
  29.  
  30.  
  31. WILDCARD CONCATENATION:  In MS-DOS only, wild cards are allowed
  32. in the above formulation.  COPY *.LST + *.REF *.LR combines each
  33. file having a .LST extension with the corresponding .REF file to
  34. produce the corresponding .LR file - so if you have 3 pairs of
  35. .LST and .REF files, for instance, you will end up with 3 .LR
  36. files.   COPY *.LST + *.REF *.COMBIN.LR, on the other hand,
  37. combines each file having a *.LST and all files matching *.REF
  38. into a single file named COMBIN.LR.
  39.  
  40.  
  41. TYPEWRITER: To type directly from the command line to the
  42. printer:
  43.  
  44. In CP/M:   type PIP LST: = CON:<cr>.  Then type the test,
  45. pressing Return and Line Feed at the end of each line.  It types
  46. each letter immediately as you enter it.  End with ctrl-Z.
  47.  
  48. In MS-DOS: type COPY CON PRN<cr> [or LPT1 or COM1 or COM2<cr> ]. 
  49. End with Ctrl Z - at which time the text will print.
  50.  
  51. You'll have to regress to typing without word-wrap or prior-line
  52. corrections (in CP/M, even without current line corrections) but,
  53. again, this is good for short jobs.
  54.  
  55.  
  56. FILE PRINT:  To print a file without going through a print
  57. program:
  58.  
  59. In CP/M:   type PIP LST:=FILENAME.EXT[P]<cr>.  Add [z] for files
  60. with non-ASCII characters such as Wordstar files.  Or just type
  61. TYPE FILENAM Ctrl-P and toggle off Ctrl-P again when the file
  62. finishes printing.  The files need to have carriage returns at
  63. the end of every line and with the PIP strategy (not with TYPE) ,
  64. if the word processor uses blank-packing, it gives my printer
  65. fits.  I don't know about yours.
  66.  
  67. In MS-DOS: type COPY FILENAME PRN or TYPE FILENAME > PRN . 
  68. Again, this won't handle blank-packed files for me (will someone
  69. please tell me how to get around this?) and it needs carriage
  70. returns on every line. 
  71.