Initial structure
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
for i in $(find $1 -name '*.h' -or -name '*.cpp' -or -name '*.glsl')
|
||||
do
|
||||
if ! grep -q 'Copyright' "$i"
|
||||
then
|
||||
cat COPYING.NOTICE "$i" >"$i.new" && mv "$i.new" "$i"
|
||||
fi
|
||||
done
|
||||
Reference in New Issue
Block a user