Merge pull request #4465 from eileenmcnaughton/master
[civicrm-core.git] / tools / bin / scripts / replace.sh
1 #!/bin/sh
2 for i in `find . -name '*.js' -or -name '*.module' -or -name '*.php' -or -name '*.po*' -or -name '*.tpl' -or -name '*.txt' -or -name '*.install' -or -name '*.inc' -or -name '*.test'`; do
3 echo $i;
4 perl -pi -e 's/CiviCRM version .\../CiviCRM version 4.5/' $i;
5 perl -pi -e 's/Copyright CiviCRM LLC \(c\) 2004-20../Copyright CiviCRM LLC (c) 2004-2014/' $i;
6 perl -pi -e 's/CiviCRM LLC \(c\) 2004-20../CiviCRM LLC (c) 2004-2014/' $i;
7 done