SQLITE_NOTICE(283): recovered 5 frames from WAL file /data/mtt.fossil-wal
File mttroot/mtt/bin/trans/sympar_txt2h artifact 7fc0d6f66f part of check-in f65ef2502d
#! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: sympar_txt2h # Label file to symbolic parameters conversion # P.J.Gawthrop March 1997 # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.5 1997/05/15 07:11:45 peterg # Removed "tolower" function # # Revision 1.4 1997/05/01 13:51:37 peterg # Replaced float by double. # # Revision 1.3 1997/05/01 13:42:43 peterg # Chaged double to float # # Revision 1.2 1997/03/20 15:14:25 peterg # Lower case conversion. # # Revision 1.1 1997/03/20 14:52:41 peterg # Initial revision # ############################################################### # Inform user echo "Creating $1_sympar.h" rm -f mtt_error #Write some file headers echo '/*' > $1_sympar.h echo "Symbolic parameter file ($1_sympar.h)" >> $1_sympar.h echo "Generated by MTT at `date`" >> $1_sympar.h echo '*/' >> $1_sympar.h echo >> $1_sympar.h #Write out the variables in c format. awk '{i++; print "double", tolower($1) ";"}' $1_sympar.txt >> $1_sympar.h # Now invoke the standard error handling. # mtt_error mtt_error.txt