🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
266 B

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