Skip to content

Instantly share code, notes, and snippets.

@hew
Forked from hlissner/replace.sh
Last active May 16, 2017 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hew/1b64bda8a8c860bf4ba6e3afbd78d391 to your computer and use it in GitHub Desktop.
Save hew/1b64bda8a8c860bf4ba6e3afbd78d391 to your computer and use it in GitHub Desktop.
Bulk search & replace with ag (the_silver_searcher)

Bulk search & replace with ag (the_silver_searcher)

# ag <https://github.com/ggreer/the_silver_searcher>
# usage: ag-replace.sh [search] [replace]
# caveats: will choke if either arguments contain a forward slash
# notes: will back up changed files to *.bak files
ag -l $1 | xargs perl -pi.bak -e "s/$1/$2/g"
# or if you prefer sed's regex syntax:
ag -l $1 | xargs sed -ri.bak -e "s/$1/$2/g"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment