Created
April 25, 2011 14:44
-
-
Save katzgrau/940608 to your computer and use it in GitHub Desktop.
Install the `chip` command line utility at https://github.com/katzgrau/chip
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
print "Installing chip to /usr/local/bin .. \n"; | |
print "Downloading ..\n"; | |
print `curl https://raw.github.com/katzgrau/chip/master/chip > /tmp/chip`; | |
print "chmod-ing to 755 ..\n"; | |
print `chmod 755 /tmp/chip`; | |
print "Moving to /usr/local/bin ..\n"; | |
print `mv /tmp/chip /usr/local/bin/`; | |
print "chip installed! Try chip --help\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment