From 647f456833ea9f71933edd25af9e2bc175bbce68 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Thu, 13 Nov 2003 14:33:15 +0000 Subject: [PATCH] get-rfc: Always download to $HOME/misc/rfc rather than the current directory. Automatically start a pager on the downloaded document. --- get-rfc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/get-rfc b/get-rfc index 03efd03..aff8b7a 100755 --- a/get-rfc +++ b/get-rfc @@ -1,3 +1,5 @@ #! /bin/sh # Depends: wget -wget "http://www.ietf.org/rfc/rfc$1.txt" +cd "$HOME/misc/rfc" +[ -f "rfc$1.txt" ] || wget "http://www.ietf.org/rfc/rfc$1.txt" +${PAGER:-pager} "rfc$1.txt" -- 2.30.2