Skip to content

Instantly share code, notes, and snippets.

@chrismytton
Last active July 8, 2021 22:14
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrismytton/4754032 to your computer and use it in GitHub Desktop.
Save chrismytton/4754032 to your computer and use it in GitHub Desktop.
Shell find and replace.
# Usage: find-replace <search> <replacement>
find-replace () {
ag -l $1 | xargs sed -i '' -e "s/$1/$2/g"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment