minetest-delta/addlicensecomments.sh

10 lines
167 B
Bash
Raw Normal View History

2010-11-29 10:13:04 -08:00
#!/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