author | Philipp Wiesemann <philipp.wiesemann@arcor.de> |
Sun, 26 Jun 2016 21:08:57 +0200 | |
changeset 10186 | 6c8e53149f0c |
parent 10000 | acd714e378f4 |
permissions | -rwxr-xr-x |
9618
5eec9af4374c
Script from Sylvain to automate updating the copyright year
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
1 |
#!/bin/sh |
5eec9af4374c
Script from Sylvain to automate updating the copyright year
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
2 |
|
5eec9af4374c
Script from Sylvain to automate updating the copyright year
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
3 |
find . -type f -exec grep -Il "Copyright" {} \; \ |
5eec9af4374c
Script from Sylvain to automate updating the copyright year
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
4 |
| grep -v \.hg \ |
5eec9af4374c
Script from Sylvain to automate updating the copyright year
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
5 |
| while read i; \ |
5eec9af4374c
Script from Sylvain to automate updating the copyright year
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
6 |
do \ |
10000
acd714e378f4
Fixed sed error on Mac OS X and updated copyright on a few last files
Sam Lantinga <slouken@libsdl.org>
parents:
9618
diff
changeset
|
7 |
LC_ALL=C sed -ie "s/\(.*Copyright.*\)[0-9]\{4\}\( *Sam Lantinga\)/\1`date +%Y`\2/" "$i"; \ |
9618
5eec9af4374c
Script from Sylvain to automate updating the copyright year
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
8 |
rm "${i}e"; \ |
5eec9af4374c
Script from Sylvain to automate updating the copyright year
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
9 |
done |