home *** CD-ROM | disk | FTP | other *** search
- Documentation of various original programs written
- by Ward Christensen
-
- ----/.COM----
- OVERVIEW:
- /.COM is a command "stacker" - allows executing
- a small list of commands without having to edit a .SUB file.
-
- USAGE:
- Type /, then space, then a string of commands,
- separated by ";". For example, suppose you were using
- my catalog program to catalog the B: disk, you would
- normally type:
-
- FMAP B: Q
- UCAT
-
- But with /.COM, just type:
-
- / FMAP B: Q;UCAT
-
- Another example, instead of:
-
- ASM FOO.BBZ
- LOAD B:FOO
- B:
- FOO
-
- just:
-
- / ASM FOO.BBZ;LOAD B:FOO;B:;FOO
-
- DEPENDENCIES:
- CP/M 1.4 only. /.COM creates the $$$.SUB file which
- is normally created by the SUBMIT command. I am not including
- the .ASM file as it is a real kludge - designed to work with
- a remote console to stack a series of commands. I'll try to
- "pretty it up" then distribute the .ASM in a future CP/M U.G.
-
-