Overview
Comment: | Included logic rep. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c29b7adc22bc589e66d6d073c0830764 |
User & Date: | gawthrop@users.sourceforge.net on 2000-10-17 08:36:56 |
Other Links: | branch diff | manifest | tags |
Context
2000-10-17
| ||
08:37:23 | Included logic rep check-in: 1af7bb600f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:36:56 | Included logic rep. check-in: c29b7adc22 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-10-16
| ||
09:41:29 | Fixed bug with printing a blank line. check-in: 11cbaba428 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_update from [6d04774928] to [3c49e7525e].
︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | + + + | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.13 2000/10/15 09:27:13 peterg ## Better way of generating $infofile ## ## Revision 1.12 2000/10/14 16:11:00 peterg ## Made all variables, states etc lower case ## ## Revision 1.11 2000/10/13 11:07:00 peterg ## Added initialisation for state and input ## ## Revision 1.10 2000/10/13 10:56:07 peterg |
︙ | |||
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | + - - - + + + - - - - + + + + - + + + + + + + + + + + + + - + - - - - - + + + + - - - - - - + - | ## ############################################################### sys=$1 # System name rep=$2 # System representation update=$3 # Update or not date=`date` if [ -z "$2" ]; then echo Usage mtt_update system representation [update] exit fi rm -f mtt_empty touch mtt_empty case $rep in numpar) |
︙ | |||
142 143 144 145 146 147 148 | 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | - + - + - + - + + + - + | }' default=$default mtt_text mtt_info mtt_moreinfo if [ -z "$update" ]; then if [ -f "mtt_in_text" ]; then echo "The following variables are defined in $textfile, but do not exist:" sort mtt_in_text | awk '{printf("\t%s\n",$1)}' |