Revision 20240,
561 bytes
checked in by ghudson, 21 years ago
(diff) |
Fix usage message to indicate that args are only valid with program.
Pass valid arguments to gdialog.
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | # $Id: gathrun.sh,v 1.3 2004-03-06 17:18:57 ghudson Exp $ |
---|
3 | |
---|
4 | # gathrun - Run a program, or put up an error dialog saying that it |
---|
5 | # doesn't exist. |
---|
6 | |
---|
7 | case $# in |
---|
8 | 0) |
---|
9 | echo "Usage: gathrun locker [program [args ...]]" >&2 |
---|
10 | exit 1 |
---|
11 | ;; |
---|
12 | 1) |
---|
13 | locker=$1 |
---|
14 | program=$1 |
---|
15 | shift |
---|
16 | ;; |
---|
17 | *) |
---|
18 | locker=$1 |
---|
19 | program=$2 |
---|
20 | shift 2 |
---|
21 | ;; |
---|
22 | esac |
---|
23 | |
---|
24 | if attachandrun --check "$locker" "$program" "$@"; then |
---|
25 | exec /bin/athena/attachandrun "$locker" "$program" "$program" "$@" |
---|
26 | else |
---|
27 | gdialog --msgbox \ |
---|
28 | "$program is not available in the $locker locker on this platform." 1 100 |
---|
29 | fi |
---|
Note: See
TracBrowser
for help on using the repository browser.