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