Overview
Comment: | Sorted out file naming scheme. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8643f0088a6a169172921b49b1a4f678 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-08 18:08:37 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-08
| ||
18:09:10 | Changed to finenumber format. check-in: 0f245d8df0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:08:37 | Sorted out file naming scheme. check-in: 8643f0088a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:08:11 | Sorted out file naming sceme check-in: 6804a09be3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cbg2ese_m2r from [1990bfd309] to [e45c1180ee].
︙ | ︙ | |||
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 | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ ############################################################### infofile='stdout'; eqnfile="$1_ese.r"; deffile="$1_def.r"; # Remove the old log file rm -f cbg2ese_m.log rm -f $1_ese.r rm -f $1_def.r rm -f mtt_info.txt #Inform user echo Creating $eqnfile echo Creating $1_def.r # Use matrix manipulation to accomplish the transformation $MATRIX > cbg2ese_m2r.log 2>> cbg2ese_m2r.log << EOF | > > > | | | < | | | 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 49 50 51 52 53 54 | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ ## Revision 1.1 1996/08/08 15:57:15 peter ## Initial revision ## ############################################################### infofile='stdout'; eqnfile="$1_ese.r"; deffile="$1_def.r"; # Remove the old log file rm -f cbg2ese_m.log rm -f $1_ese.r rm -f $1_def.r rm -f mtt_info.txt #Inform user echo Creating $eqnfile echo Creating $1_def.r # Use matrix manipulation to accomplish the transformation $MATRIX > cbg2ese_m2r.log 2>> cbg2ese_m2r.log << EOF infofile = '$infofile' system_name = '$1' deffile = '$1_def.r'; structure = cbg2ese(system_name,'','',infofile) makedef(structure,deffile); EOF |