* README updated
[oweals/minetest.git] / addlicensecomments.sh
1 #!/bin/sh
2 for i in `grep -L 'This program is free software' src/*.{h,cpp}`
3 do
4         cat licensecomment.txt > tempfile
5         cat $i >> tempfile
6         cp tempfile $i
7 done
8 rm tempfile
9