Skip to content

Instantly share code, notes, and snippets.

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