Commit 28b9612a authored by Bruno Pinto's avatar Bruno Pinto

replace plugin

parent dbecd88f
......@@ -27,6 +27,7 @@
* __rails__ – Alias for executing database migrations.
* __rake__ – Completions for rake tasks.
* __rbenv__ – [rbenv](https://github.com/sstephenson/rbenv) Ruby environment/version manager.
* __replace__ – A port of [replace](https://github.com/thoughtbot/dotfiles/blob/master/bin/replace).
* __rvm__ – [RVM](http://rvm.io) Ruby version manager.
* __sublime__ – Creates `subl` command line shortcut to launch [Sublime Text editor](http://sublimetext.com/).
* __tmux__ – Plugin to start tmux with support for 256 colours.
......
function replace --description 'Find and replace by a given list of files.'
set find_this $argv[1]
set replace_with $argv[2]
ag -l $find_this $argv[3..-1] | xargs sed -i '' "s/$find_this/$replace_with/g"
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment