Skip to content

Instantly share code, notes, and snippets.

@pine
Created September 14, 2015 01:50
Show Gist options
  • Save pine/c6c0c9b62557d37cf3ad to your computer and use it in GitHub Desktop.
Save pine/c6c0c9b62557d37cf3ad to your computer and use it in GitHub Desktop.
#!/bin/bash
set -e
mkdir -p /tmp/the_silver_searcher
cd /tmp/the_silver_searcher
wget http://geoff.greer.fm/ag/releases/the_silver_searcher-0.31.0.tar.gz
tar xvfz the_silver_searcher-0.31.0.tar.gz
cd the_silver_searcher-0.31.0
./configure --prefix=$HOME/bin/the_silver_searcher
make
make install
cd /tmp/
rm -rf /tmp/the_silver_searcher
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment