Skip to content

Instantly share code, notes, and snippets.

@sifue
Created March 2, 2013 11:42
Show Gist options
  • Save sifue/5070633 to your computer and use it in GitHub Desktop.
Save sifue/5070633 to your computer and use it in GitHub Desktop.
grepやackよりも速いコード検索ツールのagをローカルビルドインストールする ref: http://qiita.com/items/55d0c5c11a0571af3b8e
$ mkdir -p $HOME/local/source
$ cd $HOME/local/source
$ wget "https://github.com/ggreer/the_silver_searcher/archive/master.zip" --no-check-certificate
$ unzip the_silver_searcher-master.zip
$ cd the_silver_searcher-master
$ sed -i -e "s/configure/configure --prefix=\$HOME\/local/g" build.sh
$ ./build.sh
$ make install
$ ag hogehoge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment