]>
Commit | Line | Data |
---|---|---|
dd260c23 | 1 | # Awk filter, 1st filter for BFD prototype file extraction |
90f3f3e2 SC |
2 | # |
3 | # keep /*proto blocks | |
4 | /^\/\*proto\*/,/^\*\/|^\*-\*\// | |
5 | # | |
dd260c23 RP |
6 | # Apparent bug in sed can discard last line in some situations; therefore |
7 | # make last line harmless. | |
8 | END { print "\n" } |