: $Workfile:   kixprt.sh  $ $Revision:   1.0  $
#**********************************************************************#
#*                                                                    *#
#* Copyright (c) 2001 by Sun Microsystems, Inc.                       *#
#* All rights reserved.                                               *#
#*                                                                    *#
#**********************************************************************#


# kixprt
# Uses pr and lp commands to print files
# params: $1,$2,... - Files to be printed


PRINTFILES=""
while test "$1"
do
    PRINTFILES="$PRINTFILES $1"
    shift
done

pr $PRINTFILES >lp
exit 0
