SQLITE_NOTICE(283): recovered 5 frames from WAL file /data/mtt.fossil-wal
File mttroot/mtt/bin/trans/cbg2ese_m2r artifact d53b30499c part of check-in aa1d5449a4
#! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: cbg2ese_m # # # P.J.Gawthrop June 1996 # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ # Revision 1.5 1996/08/24 14:38:11 peter # Error handling included. # ## Revision 1.4 1996/08/19 09:02:12 peter ## Errors go to user - not log. ## ## Revision 1.3 1996/08/18 20:05:55 peter ## Included zero outputs. ## ## 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>mtt_error << EOF infofile = '$infofile' system_name = '$1' deffile = '$1_def.r'; structure = cbg2ese(system_name,'','',infofile) makedef(structure,deffile); EOF cat $infofile # Now invoke the standard error handling. mtt_error_r cbg2ese_m2r.log