File: update-copyright.sh

package info (click to toggle)
libsdl3 3.4.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,356 kB
  • sloc: ansic: 429,712; objc: 17,018; xml: 9,581; cpp: 8,762; perl: 4,667; python: 3,542; sh: 813; makefile: 271; cs: 56
file content (15 lines) | stat: -rwxr-xr-x 346 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

if [ "$SED" = "" ]; then
    if type gsed >/dev/null; then
        SED=gsed
    else
        SED=sed
    fi
fi

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