From: Thibault Godouet Date: Thu, 22 Jun 2000 15:48:41 +0000 (+0000) Subject: bug fix X-Git-Tag: ver2_9_4~647 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6e994da6f090f6ff08b9abed2a6d0c1627e3448;p=thirdparty%2Ffcron.git bug fix --- diff --git a/script/gen-doc b/script/gen-doc index a5fd888..8dc8417 100755 --- a/script/gen-doc +++ b/script/gen-doc @@ -1,21 +1,23 @@ #!/bin/sh -# $Id: gen-doc,v 1.7 2000-06-22 15:33:14 thib Exp $ +# $Id: gen-doc,v 1.8 2000-06-22 15:48:41 thib Exp $ PREVIOUS=`cat ./VERSION` if test $PREVIOUS != $1; then cd doc - for i in [A-Z]* + for i in * do if test $i != RCS; then + if echo $i | egrep -e '[A-Z]+' > /dev/null; then echo $i sed -e "s:fcron version [0-9.]*:fcron version $1:" < $i > tmp mv -f tmp $i chown $USER $i rm -f tmp fi + fi done fi