Skip to content

Instantly share code, notes, and snippets.

@mccurdyc
Created October 18, 2019 18:31
Show Gist options
  • Save mccurdyc/6272148a13f27f1036050a68bee8b17e to your computer and use it in GitHub Desktop.
Save mccurdyc/6272148a13f27f1036050a68bee8b17e to your computer and use it in GitHub Desktop.
find replace filesystem
# global grep and replace
grep -rl 'old' ./ | xargs sed -i '' 's/old/new/'
# global filename grep and replace
rename 's/old/new/g' $(find . -name "*old*")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment