Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dixonge/846afb55766c17ef7fb19360962e0dbb to your computer and use it in GitHub Desktop.
Save dixonge/846afb55766c17ef7fb19360962e0dbb to your computer and use it in GitHub Desktop.
Use find and sed to search/replace in all files in all subdirectories
find ./ -type f -exec sed -i -e 's/find-this/replace-with-this/g' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment