in reply to Printing to Local Windows Printer

This is the shell script we use for this. Your term program has to support it.
#!/bin/sh # Send VT100 sequence for start print /usr/bin/echo E[5i\\c | tr E \\033 #send the file cat $1 # Send a form-feed /usr/bin/echo F\\c | tr F \\14 # Send VT100 sequence for end print /usr/bin/echo E[4i\\c | tr E \\033