|
|
|
|
UGU: Unix Guru Universe - Unix Tip #4439- May 6, 2024
- Home : Help
: Today's Tip
Unix Tip #4439- May 6, 2024
TRUE64 SENDING JOBS
I use this script in
tru64 unix -Alpha
servers to send jobs to
all printers.
#!/bin/ksh
# this script is sending
# the required printing
# job to all printers
# already configured in
# your system,
cat /etc/printcap|grep "|" |cut -f 1 -d "|" | while read line anything
do
echo " sending file $1 to printer $line "
echo " lpr -P$line " $1
sleep 1
echo " to stop printing, press ctrl+c"
clear
lpr -P$line $1
done
This tip generously supported by: shadia@dohms.gov.ae
NOTE: All tips provided are USE AT YOUR OWN RISK. Tips are submitted
by various unix admins around the globe. UGU suggest you read and
test each tip in a non-volitile environment before placing into
production.
LAST 5 TIPS
4438
- USING PERL TO REVERSE
4437
- GETTING RID OF ^M
4436
- SPECIFIC REMOVALS
4435
- CHECKING FOR FILESYSTEMS FULL
4434
- ANOTHER CASE TRANSLATION
I want to
SUBSCRIBE
and get a UGU Tip everyday.
I want to
UNSUBSCRIBE
and NOT get a UGU Tip everyday.
If you have a UNIX TIP let us know, we just may use it:
(All tips become the property of the Unix Guru Universe)
|
|
|
Copyright 1994-2024 Unix Guru Universe |
|
|
|
|