Skip to content

Instantly share code, notes, and snippets.

@dylangolow
Last active January 13, 2023 03:02
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 dylangolow/1e7698c8be546c1e5ceb8d69131c767b to your computer and use it in GitHub Desktop.
Save dylangolow/1e7698c8be546c1e5ceb8d69131c767b to your computer and use it in GitHub Desktop.

search and replace text

mac

git grep -l 'search_text' | xargs sed -i '' -e 's/old_text/new_text/g'

non-mac

git grep -l 'search_text' | xargs sed -i 's/old_text/new_text/g'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment