Skip to content

Instantly share code, notes, and snippets.

@loganlinn
Created January 17, 2012 17:34
Show Gist options
  • Save loganlinn/1627722 to your computer and use it in GitHub Desktop.
Save loganlinn/1627722 to your computer and use it in GitHub Desktop.
Downloads Natural Language Processing with Python book (http://www.nltk.org/book)
#!/usr/bin/env zsh
for i in {0..12}; do
if [[ $i -lt 10 ]]; then
wget http://nltk.googlecode.com/svn/trunk/doc/book/ch0$i.html
else
wget http://nltk.googlecode.com/svn/trunk/doc/book/ch$i.html
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment