Skip to content

Instantly share code, notes, and snippets.

@randyzwitch
Created June 1, 2013 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save randyzwitch/5691145 to your computer and use it in GitHub Desktop.
Save randyzwitch/5691145 to your computer and use it in GitHub Desktop.
Downloading Airline Dataset via Bash Shell script
$ for i in {1987..2008}
> do
> curl http://stat-computing.org/dataexpo/2009/$i.csv.bz2 > $i.csv.bz2
> bunzip2 $i.csv.bz2
> done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment