Skip to content

Instantly share code, notes, and snippets.

@apuignav
Last active January 11, 2018 16:04
Show Gist options
  • Select an option

  • Save apuignav/ecdc950a9e4610b4cde2 to your computer and use it in GitHub Desktop.

Select an option

Save apuignav/ecdc950a9e4610b4cde2 to your computer and use it in GitHub Desktop.
#!/bin/sh
#
# Find and replace by a given list of files.
#
# replace foo bar **/*.rb
#
# From: https://github.com/thoughtbot/dotfiles/blob/master/bin/replace
find_this=$1
shift
replace_with=$1
shift
rg -l $find_this $* | xargs sed -i '' "s/$find_this/$replace_with/g"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment