#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: struc2switch_txt
# Structure file - generate a file for switching on states
# P.J.Gawthrop May 1997
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.1 1997/05/13 16:58:59 peterg
# Initial revision
#
###############################################################
echo Creating $1_switch.txt
rm -f $1_switch.txt
# This is the main transformation using gawk
gawk '
{
if ($1=="state") {i++; if ($3=="MTT_SWITCH") print $4};
}
END{
}
' < $1_struc.txt| sort >> $1_switch.txt
wc -l $1_switch.txt | awk '{print $1 " switches found"}'