aboutsummaryrefslogtreecommitdiff
path: root/bin/rfcr.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/rfcr.sh')
-rw-r--r--bin/rfcr.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/bin/rfcr.sh b/bin/rfcr.sh
new file mode 100644
index 00000000..860ae53d
--- /dev/null
+++ b/bin/rfcr.sh
@@ -0,0 +1,18 @@
+
+# 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