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: |
ac11ab2ec622ce9e8102bb815dec3b86 |
User & Date: | gawthrop@users.sourceforge.net on 1997-05-21 09:19:27 |
Other Links: | branch diff | manifest | tags |
Context
1997-05-21
| ||
10:00:51 | Tidied up. check-in: 74bdfa05b1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:19:27 | Initial revision check-in: ac11ab2ec6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-05-19
| ||
16:48:10 | Initial revision check-in: 08f004d9a0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/makedesc version [13f9345c9f].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #!/bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: maketex # Makes teplate for (TeX) system description. # P.J.Gawthrop August 1997 # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### system=$1 echo Creating $system'_desc.tex' ( \ echo '%% Verbal description file for system '$1' ('$1'_desc.tex)' ;\ echo 'The acausal bond graph of system \''textbf{'$system'} is' ;\ echo 'displayed in Figure \''Ref{'$system'_abg} and its label' ;\ echo 'file is listed in Section \''Ref{sec:'$system'_lbl}.' ;\ echo 'The subsystems are listed in Section \''Ref{sec:'$system'_sub}.' ;\ ) > $system_desc.tex |