xref: /dflybsd-src/share/examples/printing/if-simpleX (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
186d7f5d3SJohn Marino#!/bin/sh
286d7f5d3SJohn Marino#
386d7f5d3SJohn Marino# if-simple - Simple text input filter for lpd
486d7f5d3SJohn Marino# Installed in /usr/local/libexec/if-simple
586d7f5d3SJohn Marino#
686d7f5d3SJohn Marino# Simply copies stdin to stdout.  Ignores all filter arguments.
786d7f5d3SJohn Marino# Writes a form feed character (\f) after printing job.
886d7f5d3SJohn Marino
986d7f5d3SJohn Marino/bin/cat && printf "\f" && exit 0
1086d7f5d3SJohn Marinoexit 2
11