sdl

FORK: Simple Directmedia Layer
git clone https://git.neptards.moe/neptards/sdl.git
Log | Files | Refs

update-copyright.sh (266B)


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