Merge pull request #15944 from magnolia61/Sort_CMS_tables_alphabetically
[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 '*.hlp' -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 5 /' $i;
5 perl -pi -e 's/Copyright CiviCRM LLC \(c\) 2004-20../Copyright CiviCRM LLC (c) 2004-2020/' $i;
6 perl -pi -e 's/CiviCRM LLC \(c\) 2004-20../CiviCRM LLC (c) 2004-2020/' $i;
7 done