Overview
Comment: | Major revisions for release 3.5 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
aef3d41bf97a899970b647b12f6e6ee2 |
User & Date: | gawthrop@users.sourceforge.net on 1999-03-09 00:03:55 |
Other Links: | branch diff | manifest | tags |
Context
1999-03-09
| ||
00:12:12 | Initial revision check-in: 3a73366ad7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
00:03:55 | Major revisions for release 3.5 check-in: aef3d41bf9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
00:03:19 | Revisions for xmtt check-in: 2226a03e09 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/xmtt from [b1ab2d35df] to [d2f30c3b97].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 | # Copyright (c) P.J.Gawthrop, 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### | > > > > > > > > > > > > > > > > | > > > > > > > > | > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | # 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 case $1 in -update ) echo Creating representation list for mtt; mtt2reps_txt> $MTTPATH/REPS; echo Creating examples list for mtt; mtt -q help examples> $MTTPATH/EXAMPLES;; -example ) examples='examples';; *) echo "$1 is an invalid argument - ignoring" ;; esac shift done if [ -n "$examples" ]; then mtt -q copy $1; cd $1; xmtt exit fi # Use wish reps_txt2tk | wish -name xmtt |