From 6262422bf709b71745121f44261b18f88e29f749 Mon Sep 17 00:00:00 2001
From: kurund <kurund@civicrm.org>
Date: Fri, 28 Mar 2014 15:15:47 +0530
Subject: [PATCH] copyright and version fixes

---
 replace.sh | 7 +++++++
 1 file changed, 7 insertions(+)
 create mode 100755 replace.sh

diff --git a/replace.sh b/replace.sh
new file mode 100755
index 0000000000..4001c3d4b8
--- /dev/null
+++ b/replace.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+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
+  echo $i;
+  perl -pi -e 's/CiviCRM version .\../CiviCRM version 4.5/' $i;
+  perl -pi -e 's/Copyright CiviCRM LLC \(c\) 2004-20../Copyright CiviCRM LLC (c) 2004-2014/' $i;
+  perl -pi -e 's/CiviCRM LLC \(c\) 2004-20../CiviCRM LLC (c) 2004-2014/' $i;
+done
-- 
2.25.1