Skip to content

Instantly share code, notes, and snippets.

@uilian
Created May 15, 2019 13:50
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 uilian/94bc36f9e973e2cd116dbfe12d8eaa9a to your computer and use it in GitHub Desktop.
Save uilian/94bc36f9e973e2cd116dbfe12d8eaa9a to your computer and use it in GitHub Desktop.
Find all files containing some text, then replace by something else
ag -l "TEXT_TO_FIND" . | xargs sed -i.bak 's/TEXT_TO_FIND/NEW_TEXT_TO_REPLACE/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment