repo.or.cz
/
hband-tools.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PMbwmon bandwidth monitor: can specify which interfaces to watch, also supporting...
[hband-tools.git]
/
crawler-bin
/
rfc
blob
3a789facb03090fd7990142d4af25d1c3d5d9167
1
#!/bin/sh
2
# dependencies: sh curl
3
4
rfc
=
"
$1
"
5
6
#url="http://www.rfc-editor.org/rfc/rfc${rfc}.txt"
7
url
=
"http://www.ietf.org/rfc/rfc
${rfc}
.txt"
8
9
if
[
-t
1
];
then
10
curl
-s
"
$url
"
|
less
11
else
12
curl
"
$url
"
13
fi