#!/usr/bin/ksh
# ESOStartImp
# relance les imprimantes desactivees
#
# 30/01/95 D. Stoll
#
echo "reinitialisation des imprimantes inactives ..."
lpstat -t | grep disabled | cut -f2 -d" " > /tmp/AQRShowImpDis
cat /tmp/AQRShowImpDis | while read IMP 
do
enable $IMP
done
