SQLITE_NOTICE(283): recovered 5 frames from WAL file /data/mtt.fossil-wal
File mttroot/mtt/bin/trans/ese_tidy artifact 351111a9a5 part of check-in c0886deb6a
#! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### # Bourne shell script: ese_tidy # Tidies up Matlab format files # P.J.Gawthrop May 1998 # Copyright (c) P.J.Gawthrop, 1990, 1994, 1995. #Puts the state & output equations at the end of the file grep -v '^MTT' $1_ese.r>junk1 grep '^MTT' $1_ese.r>junk2 echo 'END;' >junk3 cat junk1 junk2 junk3> $1_ese.r