mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 07:25:10 -04:00
11 lines
267 B
Text
11 lines
267 B
Text
|
|
#!/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.
|
||
|
|
# Writes a form feed character (\f) after printing job.
|
||
|
|
|
||
|
|
/bin/cat && printf "\f" && exit 0
|
||
|
|
exit 2
|