aboutsummaryrefslogtreecommitdiff
path: root/bin/rfct.awk
blob: ac8a2a87f1035573e10e09636cadc30dcadab2f5 (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 (^L, 0x0C) characters
/[a-zA-Z0-9]/ && !// { printf "%s\n\n", $0 }