mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-23 00:45:27 +00:00
4f8dd2d39d
(cherry picked from commit 78ccadd5a22bd60c015598fa0abad92705d5ea0f)
8 lines
233 B
Bash
Executable file
8 lines
233 B
Bash
Executable file
#!/bin/sh
|
|
|
|
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
|