SQLITE_NOTICE(283): recovered 35 frames from WAL file /data/mtt.fossil-wal
File mttroot/mtt/bin/trans/m2dat artifact 943f13e957 part of check-in 3517a21e5a
#! /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