Copyright year fixes, or Happy New Year!

Use the following snippet of shell code to fix copyright years
according to latest git commit date:

for f in $(git ls-files); do
	date=$(git log --pretty=format:%cD -1 $f) || continue
	year=$(echo $date | awk '{print $4}')
	sed -e "s/\(Copyright (C) 200[0-9]-\)20[0-9][0-9]\(, Parallels\)/\1${year}\2/" -i $f
done

Signed-off-by: Kir Kolyshkin <kir@openvz.org>
97 files changed