#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: lbl2modpar_txt2txt
# Creates the component modpares in text form
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $$Id$
## $Log$
###############################################################
# Inform user
echo Creating $1_modpar.txt
#Create the modpar file complete with headers.
echo "# Modpar file ($1_modpar.txt)" > $1_modpar.txt
echo "# Generated by MTT at `date`" >> $1_modpar.txt
#Write out the variables
grep '[%|#]MODPAR' $1_lbl.txt |\
awk '{printf("%s\t%s\n", $2,$3)}' >> $1_modpar.txt
echo "# End of $1_modpar.txt" >> $1_modpar.txt