]> git.lizzy.rs Git - minetest.git/blob - addlicensecomments.sh
Merged CiaranG's fence graphic updates (ugh, well, it worked, i guess, kind of.)...
[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