mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-27 05:21:08 +01:00
11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
|
#!/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
|