oh-my-fish/plugins/replace/replace.fish
2014-11-07 16:47:50 -02:00

7 lines
215 B
Fish

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