Skip to content

Instantly share code, notes, and snippets.

@linktohack
Created January 16, 2015 10:34
Show Gist options
  • Save linktohack/cf63269aadecab895700 to your computer and use it in GitHub Desktop.
Save linktohack/cf63269aadecab895700 to your computer and use it in GitHub Desktop.
Download rmate as subr (and subl if not exist)
#!/bin/bash
wget -O /usr/local/bin/subr https://raw.githubusercontent.com/aurora/rmate/master/rmate
chmod +x /usr/local/bin/subr
if ! which subl 2>&1 > /dev/null; then
ln -s /usr/local/bin/subr /usr/local/bin/subl
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment