Skip to content

Instantly share code, notes, and snippets.

@eniuz
Created March 10, 2016 10:42
Show Gist options
  • Save eniuz/f39f9e97a3b872059e3c to your computer and use it in GitHub Desktop.
Save eniuz/f39f9e97a3b872059e3c to your computer and use it in GitHub Desktop.
Remove open short tags
for file in *.php
do
sed -i 's/<?$/<?php/' $file
sed -i 's/<? /<?php /' $file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment