Merge pull request #11163 from mickadoo/CRM-21334-fire-hooks-on-contact-image-deletion
[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