Bring in the uuidgen utility from FreeBSD.
[dragonfly/vkernel-mp.git] / share / examples / printing / if-simpleX
blobc14b4a25d12b4520b6e861ae53655687f27605cd
1 #!/bin/sh
3 # if-simple - Simple text input filter for lpd
4 # Installed in /usr/local/libexec/if-simple
6 # Simply copies stdin to stdout. Ignores all filter arguments.
7 # Writes a form feed character (\f) after printing job.
9 /bin/cat && printf "\f" && exit 0
10 exit 2