Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f3226ca0ae49832f5bb0747e8ae7d78e |
User & Date: | gawthrop@users.sourceforge.net on 2000-04-11 13:03:09 |
Other Links: | branch diff | manifest | tags |
Context
2000-04-11
| ||
18:08:33 | Fixed cse.tex bug check-in: d11c348517 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:03:09 | Initial revision check-in: f3226ca0ae user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:22:45 | *** empty log message *** check-in: 9b227e22df user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/sympar_txt2m version [06b6d0d20c].
> > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/sh ## Converts sympar.txt to an m file which provides indices in the form ## sympar.name = i ###################################### ##### Model Transformation Tools ##### ###################################### # Copyright (C) 2000 by Peter J. Gawthrop echo Creating $1_sympar.m lang_header -noglobal $1 sympar m "" sympar > $1_sympar.m awk '{ printf(" sympar.%s \t= %i; # %s\n", $1, ++i, $2); }' < $1_sympar.txt >> $1_sympar.m |