From: Silvio Rhatto Date: Sat, 23 Nov 2024 22:49:27 +0000 (-0300) Subject: Feat: OPML including all other OPML files (5) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=e114977198b7ea9f9bdc5fee5ee826eae147201a;p=feeds.git Feat: OPML including all other OPML files (5) --- diff --git a/all.opml b/all.opml index 8fa4744..d9935ee 100644 --- a/all.opml +++ b/all.opml @@ -4,52 +4,52 @@ All Feeds - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compile b/compile index 205a42e..7182a57 100755 --- a/compile +++ b/compile @@ -7,6 +7,7 @@ BASENAME="`basename $0`" DIRNAME="`dirname $0`" OUT="$DIRNAME/all.opml" +BASE_URL="https://git.fluxo.info/feeds/plain/" # Header cat <<-EOF > $OUT @@ -21,7 +22,7 @@ EOF # Contend find $DIRNAME -name '*.opml' | while read item; do name="`basename $item .opml`" - base="`dirname $item`" + base="`dirname $item | sed -e 's/^\.//'`" # Avoid recursion if [ "$name" = "all" ]; then @@ -29,7 +30,8 @@ find $DIRNAME -name '*.opml' | while read item; do fi #echo " " >> $OUT - echo " " >> $OUT + #echo " " >> $OUT + echo " " >> $OUT done # Footer