#!/bin/sh # $Id: Printer,v 1.1 1999/11/19 23:12:04 ah Exp $ (c) 1999 Andreas Hünnebeck # Printer shell script: # no argument: start klpq # with argument: call lpr with this argument to print it. if [ $# = 0 ]; then klpq else lpr $* fi