Skip to content

Instantly share code, notes, and snippets.

@katzgrau
Created March 30, 2011 19:42
Show Gist options
  • Save katzgrau/895149 to your computer and use it in GitHub Desktop.
Save katzgrau/895149 to your computer and use it in GitHub Desktop.
Install the `divvy` command line utility at https://github.com/katzgrau/divvy
print "Installing divvy to /usr/local/bin .. \n";
print "Downloading ..\n";
print `curl https://github.com/katzgrau/divvy/raw/master/divvy > /tmp/divvy`;
print "chmod-ing to 755 ..\n";
print `chmod 755 /tmp/divvy`;
print "Moving to /usr/local/bin ..\n";
print `mv /tmp/divvy /usr/local/bin/`;
print "Divvy Installed! Try divvy --help\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment