mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-12 07:13:35 -05:00
6 lines
127 B
Bash
Executable file
6 lines
127 B
Bash
Executable file
#!/bin/sh -f
|
|
for i in $*
|
|
do
|
|
i=`echo $i | sed -e 's/^rfc//' -e 's/\.txt$//'`
|
|
fetch "http://www.ietf.org/rfc/rfc${i}.txt"
|
|
done
|