Differences From Artifact [e9c68eb700]:
- Executable file mttroot/mtt/bin/trans/strip_notvars.sh — part of check-in [2134af598f] at 2001-04-13 07:14:12 on branch origin/master — Implemented lower level lbl.txt recognition of #NOT[V|P]AR (user: geraint@users.sourceforge.net, size: 172) [annotate] [blame] [check-ins using] [more...]
To Artifact [45d48c9630]:
- Executable file
mttroot/mtt/bin/trans/strip_notvars.sh
— part of check-in
[636df344ed]
at
2002-04-28 18:58:07
on branch origin/master
— Fixed [ 549658 ] awk should be gawk.
Replaced calls to awk with call to gawk. (user: geraint@users.sourceforge.net, size: 173) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 | #! /bin/sh type=$1 name=$2 file=$3 notvar="[%|#]NOT[V|P]AR" grep ${notvar} ${type}_lbl.txt |\ | | | 1 2 3 4 5 6 7 8 9 10 11 | #! /bin/sh type=$1 name=$2 file=$3 notvar="[%|#]NOT[V|P]AR" grep ${notvar} ${type}_lbl.txt |\ gawk '{ printf ("%s\t%s\n", $2, name) }' name=${name} \ >> ${file} |