11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (c) P.J.Gawthrop, 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1998/10/20 08:15:17 peterg
## Initial revision
##
###############################################################
#Look for a command line argument
while [ -n "`echo $1 | grep '^-'`" ]; do
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright (c) P.J.Gawthrop, 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 1999/03/09 00:03:55 peterg
## Major revisions for release 3.5
##
## Revision 1.1 1998/10/20 08:15:17 peterg
## Initial revision
##
###############################################################
#Look for a command line argument
while [ -n "`echo $1 | grep '^-'`" ]; do
|
38
39
40
41
42
43
44
45
46
47
48
|
mtt -q copy $1;
cd $1;
xmtt
exit
fi
# Use wish
reps_txt2tk | wish -name xmtt
|
|
|
41
42
43
44
45
46
47
48
49
50
51
|
mtt -q copy $1;
cd $1;
xmtt
exit
fi
# Use wish
mtt_make_menu | wish -name xmtt
|