SDL/build-scripts/update-copyright.sh

9 lines
267 B
Bash
Raw Normal View History

#!/bin/sh
find . -type f -exec grep -Il "Copyright" {} \; \
| grep -v \.git \
2017-01-01 19:36:35 -07:00
| while read file; \
do \
LC_ALL=C sed -b -i "s/\(.*Copyright.*\)[0-9]\{4\}\( *Sam Lantinga\)/\1`date +%Y`\2/" "$file"; \
done