Skip to content

Instantly share code, notes, and snippets.

@kdungs
Created July 11, 2012 14:03
Show Gist options
  • Save kdungs/3090553 to your computer and use it in GitHub Desktop.
Save kdungs/3090553 to your computer and use it in GitHub Desktop.
Quickly download all assignments and solutions for Numerical analysis in Heidelberg (2011) and Dortmund (2012).
#!/usr/bin/env zsh
for i in {01..14}
do
wget http://numerik.uni-hd.de/\~lehre/SS11/numerik/Docs/Loesungen/loesung_$i.pdf
wget http://numerik.uni-hd.de/\~lehre/SS11/numerik/Docs/Uebungen/uebung_$i.pdf
wget http://www.mathematik.tu-dortmund.de/lsx/cms/media/numphy2012/Blatt$i.pdf
wget http://www.mathematik.tu-dortmund.de/lsx/cms/media/numphy2012/Loesung$i.pdf
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment