Skip to content

Instantly share code, notes, and snippets.

@alanstevens
Last active September 30, 2015 14:18
Show Gist options
  • Save alanstevens/1805526 to your computer and use it in GitHub Desktop.
Save alanstevens/1805526 to your computer and use it in GitHub Desktop.
Script to install exuberant ctags so I don't have to Google it next time.
#!/bin/bash
curl -O http://superb-dca3.dl.sourceforge.net/project/ctags/ctags/5.8/ctags-5.8.tar.gz
tar xzvf ctags-5.8.tar.gz
cd ctags-5.8
./configure
make
sudo make install
echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.bash_profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment