commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / tools / bin / scripts / drop-closing-php-tags.sh
1 #!/bin/sh
2 for i in `find CRM api bin distmaker drupal extern joomla js sql standalone test test-new tools xml -name '*.php'`; do
3 echo $i;
4 perl -pi -e 's/^\?>$//' $i;
5 done