diff options
Diffstat (limited to 'share/examples/printing/hpvf')
-rw-r--r-- | share/examples/printing/hpvf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/share/examples/printing/hpvf b/share/examples/printing/hpvf new file mode 100644 index 000000000000..233de809745b --- /dev/null +++ b/share/examples/printing/hpvf @@ -0,0 +1,10 @@ +#!/bin/sh +# +# hpvf - Convert GIF files into HP/PCL, then print +# Installed in /usr/local/libexec/hpvf + +PATH=/usr/X11R6/bin:$PATH; export PATH + +giftopnm | ppmtopgm | pgmtopbm | pbmtolj -resolution 300 \ + && exit 0 \ + || exit 2 |