]> git.lizzy.rs Git - dragonfireclient.git/blob - addlicensecomments.sh
Restored the auto-admin powers of the local user (via name= in the config)
[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