Overview
Comment: | -q (quiet) switch added |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
cbad5dfd1af83c1c83c2b3af9718e144 |
User & Date: | gawthrop@users.sourceforge.net on 1996-11-01 13:34:35 |
Other Links: | branch diff | manifest | tags |
Context
1996-11-01
| ||
14:42:12 | Check correct bonds check-in: 3759b204d0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:34:35 | -q (quiet) switch added check-in: cbad5dfd1a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:22:20 | Initial revision check-in: 1f7423ad4a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [04875e8412] to [147895902a].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.32 1996/10/31 20:48:41 peterg ## Revised html generation. ## Stopped deletion of rep.txt file. ## # Revision 1.31 1996/10/20 19:23:54 peterg # Automatic generation of sub-system abg.m files. # | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.33 1996/11/01 12:34:45 peterg ## Added browser - mtt_help ## ## Revision 1.32 1996/10/31 20:48:41 peterg ## Revised html generation. ## Stopped deletion of rep.txt file. ## # Revision 1.31 1996/10/20 19:23:54 peterg # Automatic generation of sub-system abg.m files. # |
︙ | ︙ | |||
112 113 114 115 116 117 118 | ## Revision 1.2 1996/08/05 19:50:55 peter ## Put in fig.fig target. ## ## Revision 1.1 1996/08/04 17:29:42 peter ## Initial revision ## ############################################################### | > > > > > > > > > | | | | | > | 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | ## Revision 1.2 1996/08/05 19:50:55 peter ## Put in fig.fig target. ## ## Revision 1.1 1996/08/04 17:29:42 peter ## Initial revision ## ############################################################### #Look for a command line argument if [ -n "`echo $1 | grep '-'`" ]; then arg=$1 shift fi #Print header if not in quiet (-q) mode. if [ "$arg" != "-q" ]; then echo echo 'MTT (Model Transformation Tools) version 2.0++' echo 'This is free software with ABSOLUTELY NO WARRANTY.' echo 'Type `mtt warranty'\' 'for details.' echo fi if [ "$1" = "" ]; then echo 'Usage: mtt help' echo ' mtt help reps' echo ' mtt help comps' echo ' mtt info' echo ' mtt info topic' |
︙ | ︙ |