Merge pull request #11728 from JMAConsulting/CRM-21809
[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