-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' - preparing v1.4.2
- Loading branch information
Showing
42 changed files
with
11,215 additions
and
2,670 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
wget http://tools.ietf.org/rfc/rfc4614.txt | ||
#!/bin/sh | ||
|
||
wget -O rfc4614.txt http://tools.ietf.org/rfc/rfc4614.txt | ||
|
||
for RFC in `grep "\[RFC" rfc4614.txt | sed -e "s/^.*RFC/rfc/" | grep -v "rfc \|rfc$" | sed -e "s/\].*$//g" |sort |uniq`; do | ||
wget http://tools.ietf.org/rfc/$RFC.txt | ||
|
||
for RFC in `grep "\[RFC" rfc4614.txt | sed -e "s/^.*RFC/rfc/" | grep -v "rfc \|rfc$" | sed -e "s/\].*$/.txt/g" |sort |uniq`; do | ||
wget -O ${RFC} http://tools.ietf.org/rfc/${RFC} | ||
done | ||
|
||
wget http://tools.ietf.org/rfc/rfc3927.txt | ||
wget -O rfc3927.txt http://tools.ietf.org/rfc/rfc3927.txt | ||
|
||
# Get PPP related RFC's | ||
for RFC in $(echo 1332 1334 1661 1662 1877 1994 | sed -r "s/[^ ]+/rfc&.txt/g"); do | ||
wget -O ${RFC} http://tools.ietf.org/rfc/${RFC} | ||
done |
Oops, something went wrong.