1*f5bc5997SWolfram Schneider#!/bin/sh 2*f5bc5997SWolfram Schneider# 3*f5bc5997SWolfram Schneider# hpif - Simple text input filter for lpd for HP-PCL based printers 4*f5bc5997SWolfram Schneider# Installed in /usr/local/libexec/hpif 5*f5bc5997SWolfram Schneider# 6*f5bc5997SWolfram Schneider# Simply copies stdin to stdout. Ignores all filter arguments. 7*f5bc5997SWolfram Schneider# Tells printer to treat LF as CR+LF. Writes a form feed character 8*f5bc5997SWolfram Schneider# after printing job. 9*f5bc5997SWolfram Schneider 10*f5bc5997SWolfram Schneiderprintf "\033&k2G" && cat && printf "\f" && exit 0 11*f5bc5997SWolfram Schneiderexit 2 12