A>EDLIN LQELITE.DAT
--——-
New file
‘2:*-C
%E
‘V indicates that the following character is acontrol code. *V[ enters the
<ESC> code. <ESC> has character code 27, and “[” is the 27th character
fromAin the ASCII sequence. Similarly, ‘VA enters the control code< 1>.
See your DOS manual if you need further information about EDLIN.
You can now set up the printer by sending it the file LQELITE.DAT. To
avoid unnecessary logging of commands, switch hard-copy output off (by
pressingCTRL-PRTSC if hardcopy is on).To print thefile README.DOC
in LQ elite type, give the following two commands:
A>COPY LQELITE .DAT PRN
A>PRINT README.DOC
Forgreater convenience you can makeabatch file that will setup the printer
and print any specified file with asinglecommand. To create such abatch
file with the name LQPRINT.BAT, type in the first four lines shown next.
‘Z meansto press the CTRL and Zkeys simultaneously. To use this file to
print README.DOC, type the fifth line.
A>COPY CON LQPRINT.BAT
COPY LQELITE .DAT PRN
PRINT %1
“z
A>LQPRINT README.D(3C:
The first line above is acopy command from the CONsole screen to afile
namedLQPRINT.BAT. The next two lines are the contents of this file. The
Yo 1isadummy parameter: whatever file name you type afterLQPRINT will
be substitutedfor %1 and printed.