I am trying to generate a list of short descriptions of RFC's by parsing the ietf RFC index. I am hoping for some command to the effect of curl https://www.ietf.org/download/rfc-index.txt | sed 'magic' | awk 'more magic' | cut -f ?
The un-parsed output of the command curl https://www.ietf.org/download/rfc-index.txt
looks like:
6708 Application-Layer Traffic Optimization (ALTO) Requirements. S.
Kiesel, Ed., S. Previdi, M. Stiemerling, R. Woundy, Y. Yang.
September 2012. (Format: TXT, HTML) (Status: INFORMATIONAL) (DOI:
10.17487/RFC6708)
6709 Design Considerations for Protocol Extensions. B. Carpenter, B.
Aboba, Ed., S. Cheshire. September 2012. (Format: TXT, HTML)
(Status: INFORMATIONAL) (DOI: 10.17487/RFC6709)
6710 Simple Mail Transfer Protocol Extension for Message Transfer
Priorities. A. Melnikov, K. Carlberg. August 2012. (Format: TXT,
HTML) (Status: PROPOSED STANDARD) (DOI: 10.17487/RFC6710)
6711 An IANA Registry for Level of Assurance (LoA) Profiles. L.
Johansson. August 2012. (Format: TXT, HTML) (Status: INFORMATIONAL)
(DOI: 10.17487/RFC6711)
I am hoping to get output that chops off the extra notes at the Month Year:
6708 Application-Layer Traffic Optimization (ALTO) Requirements. S.
Kiesel, Ed., S. Previdi, M. Stiemerling, R. Woundy, Y. Yang.
6709 Design Considerations for Protocol Extensions. B. Carpenter, B.
Aboba, Ed., S. Cheshire.
6710 Simple Mail Transfer Protocol Extension for Message Transfer
Priorities. A. Melnikov, K. Carlberg.
6711 An IANA Registry for Level of Assurance (LoA) Profiles. L.
Johansson.