Skip to content

Instantly share code, notes, and snippets.

@clarkli86
Created September 5, 2013 02:16
Show Gist options
  • Save clarkli86/6445290 to your computer and use it in GitHub Desktop.
Save clarkli86/6445290 to your computer and use it in GitHub Desktop.
find and replace in all files
find . -type f -print0 | xargs -0 sed -i 's/Application/whatever/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment