Skip to content

Instantly share code, notes, and snippets.

@J00MZ
Last active August 10, 2020 19:50
Show Gist options
  • Save J00MZ/3e961ca6ec93c0082fc160961e2818b7 to your computer and use it in GitHub Desktop.
Save J00MZ/3e961ca6ec93c0082fc160961e2818b7 to your computer and use it in GitHub Desktop.
#!/bin/bash
DAF_DIR="$HOME/Documents/dafyomi/עירובין"
mkdir -p "${DAF_DIR}"
echo "Downloading Eruvin from daf Bet Amud Alef until daf Nun Gimel Amud Alef, for additional dapim adjust the script range."
for daf_file in {440..540}; do
echo "downloading daf [${daf_file}]"
URL="http://daf-yomi.com/Data/UploadedFiles/DY_Page/${daf_file}.pdf"
wget -q --show-progress -O "${DAF_DIR}/eruvin_${daf_file}.pdf" "$URL" || ( echo "Error downloading daf file ${daf_file}" && exit 1 )
sleep 3
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment