Differences From Artifact [981c8a73a2]:
- 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...]
To Artifact [7d64e8b718]:
- Executable file mtt/bin/trans/strip_pars.sh — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 138) [annotate] [blame] [check-ins using] [more...]
- Executable file
mttroot/mtt/bin/trans/strip_pars.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: 138) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 | #! /bin/sh infile=$1 name=$2 var="[%|#][V|P]AR" grep ${var} ${infile} |\ | | | 1 2 3 4 5 6 7 8 9 10 | #! /bin/sh infile=$1 name=$2 var="[%|#][V|P]AR" grep ${var} ${infile} |\ gawk '{ printf ("%s\t%s\n", $2, name) }' name=${name} \ |