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