Skip to content

Instantly share code, notes, and snippets.

@katzgrau
Created April 25, 2011 14:44
Show Gist options
  • Save katzgrau/940608 to your computer and use it in GitHub Desktop.
Save katzgrau/940608 to your computer and use it in GitHub Desktop.
Install the `chip` command line utility at https://github.com/katzgrau/chip
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