Skip to content

Instantly share code, notes, and snippets.

@reidransom
Created March 26, 2020 20:57
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 reidransom/09aeb46c1023f818061cb57373e2fc21 to your computer and use it in GitHub Desktop.
Save reidransom/09aeb46c1023f818061cb57373e2fc21 to your computer and use it in GitHub Desktop.
Recursive find/replace
grep -r <find> <path> | awk -F':' '{print $1}' | xargs sed -i 's/<find>/<replace>/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment