]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - share/examples/printing/if-simpleX
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.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