- 论坛徽章:
- 145
|
回复 27# ylypt123
$ awk -f mod_service.awk A.txt B.txt > C.txt
$ cat mod_service.awk
function chk(){
if(SE)
SE=S=0;
# got Service tag
if(match($0,"Service.+name=\"([^\"]+)",a)){
SN=a[1];
P=S=A=1
};
if(/<\/Service/) # end of Service tag
SE=1
}
FNR==NR{ # for file 1 (A.txt)
chk(); # check with Server tag
if(/add name/){ # for add name tag
if(!A)
next;
A=0
};
if(S)
d[SN]=d[SN]$0"\n";
next
}
{ # for file 2 (B.txt)
chk(); # check with Server tag
if(S&&d[SN]){ # check server tag with A.txt
if(P){
P=0;
printf d[SN] # using A.txt service tag
}
next
}
if(/add name/){ # one add name tag only
if(A)
print;
A=0;
next
}
print
}
|
|