Differences From Artifact [e45c1180ee]:
- Executable file mttroot/mtt/bin/trans/cbg2ese_m2r — part of check-in [8643f0088a] at 1996-08-08 18:08:37 on branch origin/master — Sorted out file naming scheme. (user: gawthrop@users.sourceforge.net, size: 1035) [annotate] [blame] [check-ins using]
To Artifact [4ddeb021fa]:
- Executable file mttroot/mtt/bin/trans/cbg2ese_m2r — part of check-in [a580330cb6] at 1996-08-18 20:06:21 on branch origin/master — Included zero outputs. (user: gawthrop@users.sourceforge.net, size: 1148) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ ## Revision 1.1 1996/08/08 15:57:15 peter ## Initial revision ## ############################################################### | > > > | > | > < | | 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 55 56 57 58 | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ ## Revision 1.2 1996/08/08 18:08:37 peter ## Sorted out file naming scheme. ## ## Revision 1.1 1996/08/08 15:57:15 peter ## Initial revision ## ############################################################### infofile='mtt_info.txt'; 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 $infofile touch $infofile #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 cat $infofile |