summaryrefslogtreecommitdiffstats
path: root/scripts/update_licenses.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update_licenses.sh')
-rwxr-xr-xscripts/update_licenses.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/update_licenses.sh b/scripts/update_licenses.sh
new file mode 100755
index 0000000..dd01af9
--- /dev/null
+++ b/scripts/update_licenses.sh
@@ -0,0 +1,6 @@
+for f in `grep -d recurse -l QT_BEGIN_LICENSE ./src`
+do
+ mv $f $f.orig
+ perl update_license.pl < $f.orig > $f
+ rm $f.orig
+done