update-copyright.sh 266 B

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