Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2015-02-25-11-27-40
[civicrm-core.git] / tools / bin / scripts / replace.sh
CommitLineData
6a488035
TO
1#!/bin/sh
2for 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;
34cd78e1 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;
6a488035 7done