hpif revision 225736
1168404Spjd#!/bin/sh
2168404Spjd#
3168404Spjd# hpif - Simple text input filter for lpd for HP-PCL based printers
4168404Spjd# Installed in /usr/local/libexec/hpif
5168404Spjd#
6168404Spjd# Simply copies stdin to stdout.  Ignores all filter arguments.
7168404Spjd# Tells printer to treat LF as CR+LF. Writes a form feed character
8168404Spjd# after printing job.
9168404Spjd
10168404Spjdprintf "\033&k2G" && cat && printf "\f" && exit 0
11168404Spjdexit 2
12168404Spjd