mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-26 20:17:35 +00:00
7 lines
127 B
Bash
Executable File
7 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
|