aboutsummaryrefslogtreecommitdiff
path: root/bin/rfcf.sh
blob: 214f4e6428ea59055c319d483b2fe44735955f65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Fetch an RFC from the IETF site and write it to stdout

# 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 curl(1)
curl -fsSL https://tools.ietf.org/rfc/rfc"$rn".txt