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 / SIMTEL / CPMUG / CPMUG040.ARK / _.DOC < prev    next >
Text File  |  1984-04-29  |  914b  |  40 lines

  1. Documentation of various original programs written
  2. by Ward Christensen
  3.  
  4.         ----/.COM----
  5. OVERVIEW:
  6.     /.COM is a command "stacker" - allows executing
  7. a small list of commands without having to edit a .SUB file.
  8.  
  9. USAGE:
  10.     Type /, then space, then a string of commands,
  11. separated by ";".  For example, suppose you were using
  12. my catalog program to catalog the B: disk, you would
  13. normally type:
  14.  
  15.     FMAP B: Q
  16.     UCAT
  17.  
  18. But with /.COM, just type:
  19.  
  20.     / FMAP B: Q;UCAT
  21.  
  22. Another example, instead of:
  23.  
  24.     ASM FOO.BBZ
  25.     LOAD B:FOO
  26.     B:
  27.     FOO
  28.  
  29. just:
  30.  
  31.     / ASM FOO.BBZ;LOAD B:FOO;B:;FOO
  32.  
  33. DEPENDENCIES:
  34.     CP/M 1.4 only.  /.COM creates the $$$.SUB file which
  35. is normally created by the SUBMIT command.  I am not including
  36. the .ASM file as it is a real kludge - designed to work with
  37. a remote console to stack a series of commands.  I'll try to
  38. "pretty it up" then distribute the .ASM in a future CP/M U.G.
  39.  
  40.