aboutsummaryrefslogtreecommitdiff
path: root/bin/rfct.awk
blob: 5ceef43f409765f50a411f1d7d6a057f7e1ca238 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Format an RFC in text format for terminal reading

# A record is a paragraph
BEGIN {
    RS = ""
    ORS = "\n\n"
}

# Skip paragraphs with ^L chars in them
# We have to be literal here due to mawk's failures
// { next }

# If there's anything left, print it
length($0)