1
0

First commit containing CP/M 3 help files

This commit is contained in:
acn
2020-03-18 11:54:31 +01:00
parent 21718e3c0b
commit 20d9a123cb
36 changed files with 2178 additions and 32 deletions

30
cpm3/30type.help Normal file
View File

@@ -0,0 +1,30 @@
///1TYPE
Syntax:
TYPE {filespec {[ PAGE | NOPAGE ]}}
Explanation:
The TYPE command displays the contents of an ASCII
character file on your screen.
[PAGE] Causes the console listing to be displayed in paged
mode; i.e., stop automatically after listing n lines
of text, where n normally defaults to 24 lines per
page.
[NOPAGE] Turns off Console Page Mode and continuously displays a
typed file on the screen.
///2Examples
A>TYPE MYPROG.PLI
Displays the contents of the file MYPROG.PLI on your screen.
A>TYPE B:THISFILE [PAGE]
Displays the contents of the file THISFILE from drive B on
your screen twenty four lines at a time.