Overview
Comment: | strips out explicit #PAR (#VAR) declarations from lbl.txt or abg.m |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1c1395bf5071a408ceb29cd34b103c75 |
User & Date: | gawthrop@users.sourceforge.net on 2001-07-12 07:31:07 |
Other Links: | branch diff | manifest | tags |
Context
2001-07-12
| ||
07:41:18 | JUst do explicit params at the top level check-in: 19daa0641a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:31:07 | strips out explicit #PAR (#VAR) declarations from lbl.txt or abg.m check-in: 1c1395bf50 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:29:28 | Now handles #PAR (or #VAR) declarations - adds them to the top of the sympar list check-in: 0ec0c085b0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/strip_pars.sh version [981c8a73a2].
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | #! /bin/sh infile=$1 name=$2 var="[%|#][V|P]AR" grep ${var} ${infile} |\ awk '{ printf ("%s\t%s\n", $2, name) }' name=${name} \ |