mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
392 B

#!/bin/sh
for x in cancel lp lpq lpr lprm lpstat; do
echo "$0: Re-creating /usr/bin/$x -> ${x}_@printer@ ..."
echo -e "#!/bin/sh\nexec -a $x ${x}_@printer@ \"\$@\"" > /usr/bin/$x
chmod +x /usr/bin/$x
done
for x in lpc; do
echo "$0: Re-creating /usr/sbin/$x -> ${x}_@printer@ ..."
echo -e "#!/bin/sh\nexec -a $x ${x}_@printer@ \"\$@\"" > /usr/sbin/$x
chmod +x /usr/sbin/$x
done
exit 0