diff options
| author | Doug Barton <dougb@FreeBSD.org> | 2009-05-30 23:48:09 +0000 |
|---|---|---|
| committer | Doug Barton <dougb@FreeBSD.org> | 2009-05-30 23:48:09 +0000 |
| commit | de7e1db19da108c11098aad4d4237554b83e1c90 (patch) | |
| tree | d52b2f78bc31caaa0b60dafa6a47a47014bcc0ff /doc/draft/update | |
| parent | 6b52fc0a792f3f68a9bec5413913e371e9e6227f (diff) | |
Notes
Diffstat (limited to 'doc/draft/update')
| -rw-r--r-- | doc/draft/update | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/doc/draft/update b/doc/draft/update deleted file mode 100644 index 6ac20904ab20..000000000000 --- a/doc/draft/update +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh -commit= -for i -do - z=`expr "$i" : 'http://www.ietf.org/internet-drafts/\(.*\)'` - if test -n "$z" - then - i="$z" - fi - if test -f "$i" - then - continue - fi - pat=`echo "$i" | sed 's/...txt/??.txt/'` - old=`echo $pat 2> /dev/null` - if test "X$old" != "X$pat" - then - newer=0 - for j in $old - do - if test $j ">" $i - then - newer=1 - fi - done - if test $newer = 1 - then - continue; - fi - fi - if fetch "http://www.ietf.org/internet-drafts/$i" - then - cvs add "$i" - if test "X$old" != "X$pat" - then - rm $old - cvs delete $old - commit="$commit $old" - fi - commit="$commit $i" - fi -done -if test -n "$commit" -then - cvs commit -m "new draft" $commit -fi |
