diff options
author | Frederic Lepied <flepied@mandriva.com> | 2001-07-31 05:52:10 +0000 |
---|---|---|
committer | Frederic Lepied <flepied@mandriva.com> | 2001-07-31 05:52:10 +0000 |
commit | 73f7c2886fe5b905cd4e2c72643eb48460291f6a (patch) | |
tree | df52efb1cb6e9f1c3f1eaf26ef69028eb7022d87 /bin/print-cups.sh | |
parent | 8872a532d7b144d3e2cf655db6a1644f656033b0 (diff) | |
download | common-data-73f7c2886fe5b905cd4e2c72643eb48460291f6a.tar common-data-73f7c2886fe5b905cd4e2c72643eb48460291f6a.tar.gz common-data-73f7c2886fe5b905cd4e2c72643eb48460291f6a.tar.bz2 common-data-73f7c2886fe5b905cd4e2c72643eb48460291f6a.tar.xz common-data-73f7c2886fe5b905cd4e2c72643eb48460291f6a.zip |
resync with 8.0-12mdk
Diffstat (limited to 'bin/print-cups.sh')
-rw-r--r-- | bin/print-cups.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/print-cups.sh b/bin/print-cups.sh new file mode 100644 index 0000000..230df13 --- /dev/null +++ b/bin/print-cups.sh @@ -0,0 +1,10 @@ +#!/bin/sh +if [ -x /usr/bin/qtcups ]; then + qtcups $* +else + if [ -x /usr/bin/xpp ]; then + xpp $* + else + lpr $* + fi +fi |