All pastes #1924438 Raw Edit

enzotib

public text v1 · immutable
#1924438 ·published 2010-08-24 18:10 UTC
rendered paste body
#!/usr/bin/awk -f function reset() {  cond = 0  reb = ""}function output() {  print reb}$0 == "<entry>" {  reset()}$0 == "</entry>" {  if (cond)    output()}$0 == "<pos>&v1;</pos>" {  cond = 1}/<reb>/ {  reb = $0}