Created
March 1, 2018 13:25
-
-
Save RatoX/6071473e80edc9e0569c19333ecedd25 to your computer and use it in GitHub Desktop.
Bulk replace with ag for MAC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Bulk replace for MAC | |
# ag <https://github.com/ggreer/the_silver_searcher> | |
# original idea: https://gist.github.com/hlissner/db74d23fc00bed81ff62 | |
# usage: replace [search] [replace] | |
function replace { | |
ag -0 -l "$1" | xargs -0 sed -i "" -E "s/$1/$2/g" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment