summaryrefslogtreecommitdiff
path: root/addlicensecomments.sh
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-06-25 04:23:21 +0300
committerPerttu Ahola <celeron55@gmail.com>2011-06-25 04:23:21 +0300
commit47e4eda4bb87cd9dc20dddf81ca473b523eeb150 (patch)
treeb1a3130a12db74607f01c569570be91e6a8b02a6 /addlicensecomments.sh
parent30c34cc23e9a060ef964854038a314a94ad5cbae (diff)
downloadminetest-47e4eda4bb87cd9dc20dddf81ca473b523eeb150.tar.gz
minetest-47e4eda4bb87cd9dc20dddf81ca473b523eeb150.tar.bz2
minetest-47e4eda4bb87cd9dc20dddf81ca473b523eeb150.zip
Reorganizing stuff (import from temporary git repo)
Diffstat (limited to 'addlicensecomments.sh')
-rw-r--r--addlicensecomments.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/addlicensecomments.sh b/addlicensecomments.sh
deleted file mode 100644
index e5642e82d..000000000
--- a/addlicensecomments.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-for i in `grep -L 'This program is free software' src/*.{h,cpp}`
-do
- cat licensecomment.txt > tempfile
- cat $i >> tempfile
- cp tempfile $i
-done
-rm tempfile
-