Last active
January 2, 2016 10:19
-
-
Save tekwiz/8289262 to your computer and use it in GitHub Desktop.
Download & setup rmate
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
#!/usr/bin/env bash | |
## | |
# Run with: | |
# | |
# curl -sSL https://gist.github.com/tekwiz/8289262/raw/rmate-setup.sh | bash -s | |
# | |
mkdir -p ~/bin | |
curl -Lo ~/bin/rmate https://raw.github.com/textmate/rmate/master/bin/rmate | |
chmod +x ~/bin/rmate | |
if [[ !($PATH =~ ^.*$HOME/bin) ]]; then | |
echo 'export PATH="$PATH:$HOME/bin"' >> ~/.bash_profile | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment