Skip to content

Instantly share code, notes, and snippets.

@arielallon
Last active December 30, 2015 09:28
Show Gist options
  • Select an option

  • Save arielallon/7809057 to your computer and use it in GitHub Desktop.

Select an option

Save arielallon/7809057 to your computer and use it in GitHub Desktop.
sed (find and replace) recursively on Mac
LANG=C; LC_CTYPE=C; find . -type f -print0 | xargs -0 sed -i '' 's/find/replace/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment