]> git.lizzy.rs Git - dragonfireclient.git/blob - addlicensecomments.sh
local game connects to 127.0.0.1 instead of localhost (windows returns an ipv6 addres...
[dragonfireclient.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