update source copyright notices for 2018

This commit is contained in:
Bill Zissimopoulos
2018-01-03 15:29:38 -08:00
parent 2f026cbc6f
commit 9bd9cf4fbd
123 changed files with 139 additions and 122 deletions

View File

@ -0,0 +1,17 @@
#!/bin/bash
OWNER="Bill Zissimopoulos"
MATCH="(@c|C)opyright ([0-9]+)(-[0-9]+)? ${OWNER}(. All rights reserved.)?"
SUBST="\1opyright \2-$(date +%Y) ${OWNER}\4"
if [[ $# -eq 0 ]]; then
echo "usage: $(basename $0) tree" 1>&2
echo "WARNING: this will in-place edit your source files!" 1>&2
exit 1
fi
if [[ "$(uname -s)" == Darwin* ]]; then
git grep -lz "$@" | xargs -0 sed -E -i "" -e "s/$MATCH/$SUBST/"
else
git grep -lz "$@" | xargs -0 sed -E -i"" -e "s/$MATCH/$SUBST/"
fi