File: update-copyright.sh

package info (click to toggle)
libsdl2 2.0.9%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 62,300 kB
  • sloc: ansic: 198,436; objc: 11,604; sh: 11,573; cpp: 5,915; xml: 4,518; makefile: 651; perl: 553; python: 61
file content (8 lines) | stat: -rwxr-xr-x 266 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#!/bin/sh

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