Last active
January 11, 2018 16:04
-
-
Save apuignav/ecdc950a9e4610b4cde2 to your computer and use it in GitHub Desktop.
Replace utility (https://github.com/thoughtbot/dotfiles/blob/master/bin/replace)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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