diff options
Diffstat (limited to 'addlicensecomments.sh')
-rw-r--r-- | addlicensecomments.sh | 9 |
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 - |