aboutsummaryrefslogtreecommitdiff
path: root/bin/rfcr
blob: 75d9abb093411fdfde9c66597b15d12d9a277358 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

# Check arguments
if [ "$#" -ne 1 ] ; then
    printf >&2 'rfcf: Need one RFC number\n'
    exit 2
fi

# Argument is RFC number
rn=$1

# Retrieve the RFC with rfcf(1df)
rfcf "$rn" |

# Pipe it through rfct(1df) to format it as text
rfct |

# Either spit it directly or through a pager
pit