Created
December 31, 2008 03:22
-
-
Save evanwalsh/41876 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Let's get a git repo on a host that doesn't have it | |
curl -L http://github.com/$1/$2/tarball/master -o $1-$2.tar.gz > /dev/null | |
echo "Download of tarball complete." | |
tar -xf $1-$2.tar.gz > /dev/null | |
rm $1-$2.tar.gz | |
echo "Untarring of tarball complete." | |
echo "Feel free to change to the new dir" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment