before adding license notice

This commit is contained in:
maliakal_d 2021-10-14 17:51:45 +02:00
parent 576157351e
commit 2d7ffdd603

9
updateLicenseNotice.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
for file in $(find . -name "*.h"); do
echo Processing $file
cat notice_to_add_for_every_file $file > $file.modified
mv $file.modified $file
done