Skip to content

Instantly share code, notes, and snippets.

@kastnerkyle
Forked from genekogan/download_haeckel.sh
Created July 30, 2018 01:59
Show Gist options
  • Save kastnerkyle/c5ac884569d16196b119e716a02481cf to your computer and use it in GitHub Desktop.
Save kastnerkyle/c5ac884569d16196b119e716a02481cf to your computer and use it in GitHub Desktop.
script to scrape scanned illustrations from Ernst Haeckel's book Kunstformen der Natur (Artforms of Nature)
for i in {1..100}; do
filepath=$(printf "http://caliban.mpipz.mpg.de/haeckel/kunstformen/Tafel_%03d_300.jpg" $i)
wget $filepath;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment