Add a cvsup example to track the 1.4 release.
[dragonfly.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