aboutsummaryrefslogtreecommitdiff
path: root/bin/rfct.awk
blob: 90cd8e0d4acaa113471c5c09bdb87e1c9611e8e6 (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 = ""
    ORS = "\n\n"
}

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