TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
"R> Instead of printing the file to your PostScript
"R> printer, try
"R> to copy it with the DOS command COPY. If e.g. your file is
"R> c:\mydir\myfile.eps and your postscript printer is connected to
"R> LPT1:, use the DOS command
"R> COPY c:\mydir\myfile.eps LPT1:
I would suggest one modification:
COPY /b c:\mydir\myfile.eps LPT1:
MS-DOS assumes text files as soon as you send a file to the printer. Therefore
printing stops at the CP/M end-of-text marker CTRL-Z. The /b switch prevents
this.