RSXML2 rename

This commit is contained in:
relikd
2019-09-16 00:18:25 +02:00
parent 631ddc9064
commit c2ba9b06a4
69 changed files with 141 additions and 136 deletions

16
RSXML2Tests/download_feeds.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
counter=0
function processLine() {
if [ "$1" ] && [[ ! ${1:0:1} == "#" ]]; then # blank lines & comments ignored
((counter++))
echo "Download (feed_$counter.rss): $1"
curl -s -o "Resources/feed_$counter.rss" "$1"
fi
}
while read -r line; do
processLine "$line";
done < "download_list.txt";
processLine "$line"