Listing 4: can.sh
#!/bin/sh
#######################################################
#
# can.sh - cancel print jobs (System V printing)
#
#######################################################
clear
echo "\nEnter the print jobs to cancel and return:"
read PJOBS
cancel $PJOBS
sleep 3
# End of File
|