Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • 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