#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: strip_comments
# Strips comments from mtt text files
# P.J.Gawthrop July 1997
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 1998/11/18 11:30:19 peterg
## Now strips blank lines as well
##
###############################################################
sed 's/%/#/' |\
gawk --field-separator '#' '{if (length($1)>0) print $1}' |\
gawk '{if (NF>0) print $0}'