aboutsummaryrefslogtreecommitdiff
path: root/share/examples/printing/hpif
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1997-05-19 10:35:55 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1997-05-19 10:35:55 +0000
commitfcc0587080d3250a509550d7222e70e6cdc7d281 (patch)
tree827c9ac8236bbd050dc5f1f0753a0ebab99e026a /share/examples/printing/hpif
parent8935d79733d4e5938b0f22904e35d251e8eb514d (diff)
This commit was manufactured by cvs2svn to create tagrelease/2.2.2
'RELENG_2_2_2_RELEASE'.
Diffstat (limited to 'share/examples/printing/hpif')
-rw-r--r--share/examples/printing/hpif11
1 files changed, 0 insertions, 11 deletions
diff --git a/share/examples/printing/hpif b/share/examples/printing/hpif
deleted file mode 100644
index 69f1f34c55fd..000000000000
--- a/share/examples/printing/hpif
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-#
-# hpif - Simple text input filter for lpd for HP-PCL based printers
-# Installed in /usr/local/libexec/hpif
-#
-# Simply copies stdin to stdout. Ignores all filter arguments.
-# Tells printer to treat LF as CR+LF. Writes a form feed character
-# after printing job.
-
-printf "\033&k2G" && cat && printf "\f" && exit 0
-exit 2