blob: 7a5bf97ab38f5ad48daeafbba1450dd4c51c232a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
#
# if-simple - Simple text input filter for lpd
# Installed in /usr/local/libexec/if-simple
#
# Simply copies stdin to stdout. Ignores all filter arguments.
/bin/cat && exit 0
exit 2
|