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: |
7d99654f67f7e200553b2d4edafeba01 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-14 08:36:16 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-14
| ||
08:36:52 | Puts a tab between columns. check-in: a1c2d5628a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:36:16 | Initial revision check-in: 7d99654f67 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:21:27 | Initial revision check-in: 1b4eaf6372 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/m2dat version [943f13e957].
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: m2dat # Transforms data in .m file to just the data - ie strips the matlab stuff # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### echo Creating $1.dat awk '$1 ~ /[0-9]/ && NF>0 {print} ' <$1.m >$1.dat |