in reply to How to print to a printer?

On Windows, you can use

open( PRN, "> LPT1")
or
open( PRN, "> //printserver/printershare" )
which is quite useful. The only problem is that you can't check when your printer's buffer is full.

Replies are listed 'Best First'.
Re: Answer: Printing to a printer
by mowgli (Friar) on Feb 16, 2003 at 09:37 UTC

    That obviously won't work on anything but windows-based systems. On unix systems, you'll most likely either want to pipe into lpr(1) or lp(1); as an alternative, a platform independent interface like the Printer module could be used.

    --
    mowgli