Skip to content

Instantly share code, notes, and snippets.

@wmelton
Created May 10, 2019 15:51
Show Gist options
  • Save wmelton/4289906ad7819f6070d3be8066e43dac to your computer and use it in GitHub Desktop.
Save wmelton/4289906ad7819f6070d3be8066e43dac to your computer and use it in GitHub Desktop.
In-place search and replace using grep and sed
grep -Rl text_to_find directory_to_search 2>/dev/null | while read line; do sed -i 's/text_to_find/replacement_text/g' $line; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment