aboutsummaryrefslogtreecommitdiff
path: root/tools/update-copyright
blob: d1af46c3f4c9f87b7883c5569d40880ccf83ed94 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

# Set the current year as a variable
current_year=$(date +"%Y")

# Find all files in the sys/ directory and its subdirectories
find . -type f -print0 | while read -d $'\0' file
do
  # Replace the old copyright notice with the new one
  sed -i "s/\(Copyright (c) \)[0-9]\{4\}\(.*\)/\1${current_year}\2/g" "${file}"
done