10 lines
196 B
Plaintext
10 lines
196 B
Plaintext
|
#!/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
|