Skip to content

Instantly share code, notes, and snippets.

@joona
Created April 20, 2017 13:49
Show Gist options
  • Select an option

  • Save joona/8a31bfcd1d079da1f57278e0153cd99a to your computer and use it in GitHub Desktop.

Select an option

Save joona/8a31bfcd1d079da1f57278e0153cd99a to your computer and use it in GitHub Desktop.
Convert PHP short tags to full tags
sed -i -e 's/<?php\([^p=]\)/<?php \1/gm' -e 's/<?=\([^ ]\)/<?= \1/gm' -e 's/\([^ ]\)?>/\1 ?>/g' file.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment