Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Theaxiom/61af95c6dd3fe8937481 to your computer and use it in GitHub Desktop.
Save Theaxiom/61af95c6dd3fe8937481 to your computer and use it in GitHub Desktop.
replace-foo-with-bar-in-all-php-files-in-the-folder-recursive
find . -name "*.php" -print | xargs sed -i 's/foo/bar/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment