-Dear Linuxers,
-
-I have just bought an HP DeskJet 520 printer for my linux box. I couldn't get it
-to print PostScript files, no even with gs. Is there anybody who has succeded
-printing PostScript files on the same type of printer or who can help me out?
-
-Please reply with e-mail.
I decided to post because others might be interested.
I do just fine with GhostScript on my 520. Even wrote a little script that
runs gs and dumps to the printer. Here it is:
----------------- Cut Here -----------------------------
if [ -z "$1" ] ; then
echo "Usage gsdj <filename>"
exit 1
fi
gs -sDEVICE=deskjet -sOutputFile="|lpr" -dNOPAUSE $1 - < /dev/null > /dev/null
----------------- Cut Here -----------------------------
Hope this helps,
BAJ
--
Another random extraction from the mental bit stream of...
Byron A. Jeff - PhD student operating in parallel - And Using Linux!