Artifact 981c8a73a28acab047851b79628989d2a4837ffae8c31272398f5d0cb9721844:
- Executable file mttroot/mtt/bin/trans/strip_pars.sh — part of check-in [1c1395bf50] at 2001-07-12 07:31:07 on branch origin/master — strips out explicit #PAR (#VAR) declarations from lbl.txt or abg.m (user: gawthrop@users.sourceforge.net, size: 137) [annotate] [blame] [check-ins using] [more...]
#! /bin/sh infile=$1 name=$2 var="[%|#][V|P]AR" grep ${var} ${infile} |\ awk '{ printf ("%s\t%s\n", $2, name) }' name=${name} \