1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /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.
sed 's/%/#/' |\
awk --field-separator '#' '{if (length($1)>0) print $1}' |\
awk '{if (NF>0) print $0}'
|
>
>
>
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#! /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$
###############################################################
sed 's/%/#/' |\
awk --field-separator '#' '{if (length($1)>0) print $1}' |\
awk '{if (NF>0) print $0}'
|