/usr/local/bin/wabiprint 스크립트를 다음과 같이 생성해 줍니다.
#!/bin/sh
#
# by Ralf Burger 1997 - Inside-Internet Gmbh
# http://www.ralfBurger.com
# ralf@ralfburger.com
#
# dirty - und auch nicht besonders quick :)
#
# Druckt aus einem druckspooler-Verzeichnis per nprint
# auf eine novell-printerque
#
# Wird benoetigt, damit wabi auf Novell-Printerques
# drucken kann
#
#
#/usr/local/bin/wabiprint
#
#
cd /var/spool/csbwabi
if test -s cf* ;then
for ctlfile in cf* ; do
grep "Udf" ${ctlfile}|tail -c 14 > /tmp/csbwabi.tmp
read datafile < /tmp/csbwabi.tmp
if test -n ${datafile} ; then
nprint -S servername -U guest -P 12345 -q Q1
${datafile}
rm ${datafile}
rm ${ctlfile}
fi
done
fi
물론 여기서 서버네임, 유저네임, 패스워드, 프린터 큐들을 적절하게 조정해 주어야 합니
다.(man nprint 참조)