I can't believe I've waited this long to create this stupid shell function:

```
rfc() {
local rfc="rfc${1##rfc}";
curl -s "https://www.rfc-editor.org/rfc/${rfc}.txt" | ${PAGER:-more}
}
```

@jschauma I'm never sure how much self-promotion is appropriate for this, but: https://github.com/paulehoffman/ietf-cli

rfc, draft (with partial name), tracker (for almost anything there), and so on. Issues and PRs welcome (but I admit my Python style here is a tad twee).

GitHub - paulehoffman/ietf-cli: Command-line interface for accessing IETF documents and other information

Command-line interface for accessing IETF documents and other information - paulehoffman/ietf-cli

GitHub
@paulehoffman Oh, that looks neat! Will give that a try later.