Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a3438c015e727ccd75a6e821e5b48dbf |
User & Date: | gawthrop@users.sourceforge.net on 1997-02-04 18:50:07 |
Other Links: | branch diff | manifest | tags |
Context
1997-02-04
| ||
18:52:34 |
Copied from matlab tidy -- removed everthing except removal of blank lines check-in: a321f8766f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:50:07 | Initial revision check-in: a3438c015e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-01-21
| ||
22:57:17 | Various bug fixes. check-in: 23cfc41def user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/c-tidy version [efd4e66117].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 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 59 60 61 62 63 64 65 66 67 68 69 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1996/08/20 08:26:06 peter ## Version control header added. ## ############################################################### # Bourne shell script: matlab_tidy # Tidies up Matlab format files # P.J.Gawthrop 14 June 1990 13 Nov 1990, 19 Nov 93, April 1994, Dec 1994, # June 1995 # Copyright (c) P.J.Gawthrop, 1990, 1994, 1995. #rm junk cat $1 | \ tr "[A-Z]" "[a-z]" | \ sed -e "s/ //" \ -e "s/ //" \ -e "s/\$\$//" \ -e "s/\.\.;;/../" \ -e "s/\$/;/g" \ -e "s/;;;//g" \ -e "s/;;/;/g" \ -e "s/\.;/./g" \ -e "s/,;/,/g" \ -e "s/\*\*/^/g" \ -e "s/nocr /nocr/g" \ -e "s/nocr\\nl/nocr/g" \ -e "s/;;/;/g" \ -e "s/:=/=/g" \ -e "s/ e /e/g" \ -e "s/*;/* .../g" \ -e "s/+;/+ .../g" \ -e "s/ . //g" \ -e "s/^;$//g" \ -e "s/mttx0/X_0/g" \ -e "s/mttu0/u_0/g" \ -e "s/mtty0/y_0/g" \ -e "s/mttdx/dX/g" \ -e "s/mttx/X/g" \ -e "s/mttu/u/g" \ -e "s/mtty/y/g" \ -e "s/mtta/A/g" \ -e "s/mttb/B/g" \ -e "s/mttc/C/g" \ -e "s/mttd/D/g" \ -e "s/mtte/E/g" \ -e "s/mtttf/G/g" \ -e "s/mttpar/MTTPAR/g" \ -e "s/\.\.\\$/../g" \ -e "s/\\$/;/g" \ -e "s/inv(mtte)\*/mtte\\\/g"\ -e "s/\\$//" |\ tr -s '\012' '\012'\ >junk mv junk $1 |