PMbwmon bandwidth monitor: can specify which interfaces to watch, also supporting...
[hband-tools.git] / crawler-bin / rfc
blob3a789facb03090fd7990142d4af25d1c3d5d9167
1 #!/bin/sh
2 # dependencies: sh curl
4 rfc="$1"
6 #url="http://www.rfc-editor.org/rfc/rfc${rfc}.txt"
7 url="http://www.ietf.org/rfc/rfc${rfc}.txt"
9 if [ -t 1 ]; then
10 curl -s "$url" | less
11 else
12 curl "$url"