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