mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
7 lines
215 B
Fish
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
|