Skip to content

Instantly share code, notes, and snippets.

@jaeschrich
Last active December 15, 2015 15:29
Show Gist options
  • Save jaeschrich/5282546 to your computer and use it in GitHub Desktop.
Save jaeschrich/5282546 to your computer and use it in GitHub Desktop.
#!/bin/bash
# get_bootstrap
# Usage
# sh get_bootstrap.sh <dest>
# downloads twitter bootstrap to <dest>
echo Fetching files...
curl http://twitter.github.io/bootstrap/assets/bootstrap.zip > bootstrap.zip
echo Unzipping files...
unzip -d $1 bootstrap.zip
echo cleaning up...
rm bootstrap.zip
echo Done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment