Lesson 5 presents the command to display the contents of text files.
the command to display the contents of a text file: PRINT
Up to now you have used the editor to see a file, but you can display the contents of a text file on the screen without starting the editor to text in the file and list it.
You should be in MYGROUP.
Displaying an entire file |
 |
To see the contents of DOCUMENT on the screen, use PRINT command this way:
Displaying selected lines |
 |
To see only lines 3 through 6 of the file, enter this:
PRINT DOCUMENT;START=3;END=6Return
|
 |
 |  |
 |
 | NOTE: Notice the punctuation? The semicolons ( ; ) are needed here. |
 |
 |  |
 |
Here is what happens:
START= tells the computer which line of the file to show first.
END= tells the computer which line to show last.
The semicolons ensure that the computer knows where one parameter ends and another begins.
What do you suppose the following prints to the screen:
Try it.
The last three lines of the file DOCUMENT are printed on the screen. This happens because you specified a minus sign (-) ahead of the number 3, so the instruction becomes: start printing at the third line from the end.
Lesson 5 Exercises |
 |
Display the file ACORN to your terminal screen.
Display lines 3 through 7 of the file ACORN to your screen.
What method would you use to print the file ACORN to a line printer?