1f5bc5997SWolfram Schneider#!/bin/sh 2f5bc5997SWolfram Schneider# 3f5bc5997SWolfram Schneider# hpvf - Convert GIF files into HP/PCL, then print 4f5bc5997SWolfram Schneider# Installed in /usr/local/libexec/hpvf 5f5bc5997SWolfram Schneider 6f5bc5997SWolfram SchneiderPATH=/usr/X11R6/bin:$PATH; export PATH 7f5bc5997SWolfram Schneider 8f5bc5997SWolfram Schneidergiftopnm | ppmtopgm | pgmtopbm | pbmtolj -resolution 300 \ 9f5bc5997SWolfram Schneider && exit 0 \ 10f5bc5997SWolfram Schneider || exit 2 11