git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
tidying
[exim.git]
/
release-process
/
scripts
/
docs_strip_changebars
1
#!/bin/awk -f
2
BEGIN {seen = 0}
3
/^\.(new|wen)/ && $seen != 0 {next}
4
/^\.wen$/ {seen = 1;next}
5
{print}