diff --git a/fetch_gaidao.sh b/fetch_gaidao.sh index 992a72e..a61ba71 100755 --- a/fetch_gaidao.sh +++ b/fetch_gaidao.sh @@ -2,15 +2,15 @@ # Auf neue Ausgaben von der Gai Dao prüfen, herunterladen cd ~/Documents/Zeitungen/Gaidao || exit 1 -ausgaben="$(curl -s https://fda-ifa.org/gaidao/ausgaben/ \ - | grep -Eo 'https://fda-ifa.org/gai-?dao-(n[or]-)?[0-9]+-[^/]*/')" +ausgaben=$(curl -s https://fda-ifa.org/gaidao/ausgaben/ \ + | grep -Eo 'https://fda-ifa.org/gai-?dao-(n[or]-)?[0-9]+-[^/]*/') for ausgabe in ${ausgaben}; do - url="$(curl -s ${ausgabe} \ - | grep -Eo 'https://fda-ifa.org/wp-content/uploads/[0-9]{4}/[0-9]{2}/[^ ]*\.epub')" - file="$(echo ${url} | grep -o '[^/]*\.epub')" - if [ ! -e ${file} ]; then + url=$(curl -s "${ausgabe}" \ + | grep -Eo 'https://fda-ifa.org/wp-content/uploads/[0-9]{4}/[0-9]{2}/[^ ]*\.epub') + file=$(echo "${url}" | grep -o '[^/]*\.epub') + if [ ! -e "${file}" ]; then echo "Downloading Gai Dao: ${file}." - curl -so ${file} ${url} + curl -so "${file}" "${url}" fi done