diff options
author | June McEnroe <june@causal.agency> | 2020-12-18 22:59:41 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-12-18 22:59:41 -0500 |
commit | 592efa05e747359be717705d82ec25acca0f16b2 (patch) | |
tree | 7bf5dcd4e2cd7dd063f76aa0fed862f3bc2ab916 /rfc/Makefile | |
parent | Fix bibsort name sorting for middle names, trailing titles (diff) | |
download | src-592efa05e747359be717705d82ec25acca0f16b2.tar.gz src-592efa05e747359be717705d82ec25acca0f16b2.zip |
Add scripts to download, compress and tag IETF RFCs
Diffstat (limited to '')
-rw-r--r-- | rfc/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/rfc/Makefile b/rfc/Makefile new file mode 100644 index 00000000..ed89a4e4 --- /dev/null +++ b/rfc/Makefile @@ -0,0 +1,11 @@ +tags: rfctags.pl + perl rfctags.pl > $@ + +sync: + rsync -z ftp.rfc-editor.org::rfcs-text-only/'rfc[0-9]*.txt' . + +compress: + gzip -9f *.txt + +clean: + rm -f *.txt *.txt.gz tags |