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

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

# Print the block followed by two newlines, as long as it has at least one
# alphanumeric character and no pagebreak characters
/[a-zA-Z0-9]/ && !/\x0c/ { printf "%s\n\n", $0 }