blob: fad3db2101f8ac1ce974b79a0e5996844f1825df [file] [log] [blame]
# putting the end tag /</idsDoc> in the right place
BEGIN {DOCCOUNT = 0;}
$0 ~ "</idsDoc>" {}
$0 ~ "<idsDoc" {
if(DOCCOUNT++ > 0){
print " </idsDoc>";
};
print $0;
}
$0 ~ "</idsCorpus>" {print " </idsDoc>\n</idsCorpus>"}
$0 !~ "</idsDoc>" && $0 !~ "</idsCorpus>" && $0 !~ "<idsDoc" {print}