121240Swosch#!/bin/sh
221240Swosch#
321240Swosch# hpif - Simple text input filter for lpd for HP-PCL based printers
421240Swosch# Installed in /usr/local/libexec/hpif
521240Swosch#
621240Swosch# Simply copies stdin to stdout.  Ignores all filter arguments.
721240Swosch# Tells printer to treat LF as CR+LF. Writes a form feed character
821240Swosch# after printing job.
921240Swosch
1021240Swoschprintf "\033&k2G" && cat && printf "\f" && exit 0
1121240Swoschexit 2
12