Skip to content

Instantly share code, notes, and snippets.

@josuecau
Last active October 8, 2018 20:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josuecau/3864205 to your computer and use it in GitHub Desktop.
Save josuecau/3864205 to your computer and use it in GitHub Desktop.
Recursive search & replace on Mac OS X
# search & replace with backup
find . -name "*.php" -print | xargs sed -i.bak 's/foo/bar/g'
# delete backup files
find . -name '*.bak' | xargs rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment