aboutsummaryrefslogtreecommitdiff
path: root/bin/rfct.awk
blob: 2f0cc42da5f7c8efbca727a0b2cb372a73b83e50 (plain) (blame)
1
2
3
4
5
6
7
8
# 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 }