Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sparkcodeuk/c3f9f1694236b81a05575e416c1b8b81 to your computer and use it in GitHub Desktop.
Save sparkcodeuk/c3f9f1694236b81a05575e416c1b8b81 to your computer and use it in GitHub Desktop.
Recursively remove PHP short tags from a codebase
find . -type f -name '*.php' -print0|xargs -0 -n1 perl -i -pe 's/<\?(?!(=|php))(\s?)/<?php$2/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment