2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-27 20:49:04 +00:00
bind/doc/draft/update

21 lines
312 B
Plaintext
Raw Normal View History

2002-07-04 00:32:48 +00:00
#!/bin/sh
for i
do
if test -f "$i"
then
continue
fi
pat=`echo "$i" | sed 's/...txt/??.txt/'`
old=`echo $pat 2> /dev/null`
fetch "http://www.ietf.org/internet-drafts/$i"
cvs add "$1"
if test "X$old" != "X$pat"
then
rm $old
cvs delete $old
else
old=
fi
cvs commit -m "new draft" $i $old
done