]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - share/examples/printing/if-simpleX
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / share / examples / printing / if-simpleX
1 #!/bin/sh
2 #
3 # if-simple - Simple text input filter for lpd
4 # Installed in /usr/local/libexec/if-simple
5 #
6 # Simply copies stdin to stdout.  Ignores all filter arguments.
7 # Writes a form feed character (\f) after printing job.
8
9 /bin/cat && printf "\f" && exit 0
10 exit 2