Revision 16239,
561 bytes
checked in by ghudson, 24 years ago
(diff) |
Fix one-argument case.
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | # $Id: gathrun.sh,v 1.2 2001-05-21 16:02:25 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." 0 100 |
---|
29 | fi |
---|
Note: See
TracBrowser
for help on using the repository browser.