Merge remote-tracking branch 'upstream/4.4' into 4.4-4.5-2014-09-29-14-51-22
[civicrm-core.git] / tools / bin / scripts / delete.sh
1 #!/bin/sh
2 for j in CRM bin api test distmaker drupal joomla xml; do
3 cd ../$j;
4 for i in `find . -name \*.php`; do
5 echo $i;
6 sed -i '' -e '/\@author Donald/d' $i
7 done
8 done
9
10