Differences From Artifact [90cc5ce192]:
- Executable file mttroot/mtt/bin/trans/lbl2icd_txt2txt.sh — part of check-in [16076f51bd] at 2001-04-15 21:15:41 on branch origin/master — Added interface definition rep: _ICD.(txt|c|cc|m). (user: geraint@users.sourceforge.net, size: 867) [annotate] [blame] [check-ins using] [more...]
To Artifact [2a3b38ea21]:
- Executable file mtt/bin/trans/lbl2icd_txt2txt.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: 868) [annotate] [blame] [check-ins using] [more...]
- Executable file
mttroot/mtt/bin/trans/lbl2icd_txt2txt.sh
— part of check-in
[66bb5feadf]
at
2002-04-28 18:41:27
on branch origin/master
— Fixed [ 549658 ] awk should be gawk.
Replaced calls to awk with call to gawk. (user: geraint@users.sourceforge.net, size: 868) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
18 19 20 21 22 23 24 | #Create the ICD file complete with headers. echo "# Component ICD file ($1_icd.txt)" > ${icd} echo "# Generated by MTT at `date`" >> ${icd} #Write out the variables grep '[%|#]ICD' ${lbl} |\ | | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #Create the ICD file complete with headers. echo "# Component ICD file ($1_icd.txt)" > ${icd} echo "# Generated by MTT at `date`" >> ${icd} #Write out the variables grep '[%|#]ICD' ${lbl} |\ gawk '{ if (match($3,"/")==0){ if (match($2,"\\$")==0){ icd=$2; name =$3 } else{ icd=$3; name =$2 } |
︙ | ︙ |