xref: /freebsd/share/examples/printing/hpvf (revision 2e1417489338b971e5fd599ff48b5f65df9e8d3b)
1#!/bin/sh
2#
3#  hpvf - Convert GIF files into HP/PCL, then print
4#  Installed in /usr/local/libexec/hpvf
5
6PATH=/usr/X11R6/bin:$PATH; export PATH
7
8giftopnm | ppmtopgm | pgmtopbm | pbmtolj -resolution 300 \
9    && exit 0 \
10    || exit 2
11