mirror of https://github.com/mapnik/mapnik
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
469 B
Bash
21 lines
469 B
Bash
#!/bin/bash
|
|
|
|
if [ $# -ne 1 ]
|
|
then
|
|
echo "Usage: `basename $0` YEAR"
|
|
exit 1
|
|
fi
|
|
|
|
YEAR=$1
|
|
DIRECTORIES=( "include/mapnik" "src" "plugins/input" "demo/c++" "demo/viewer" "utils" "test" )
|
|
|
|
SED="sed -i -e"
|
|
COMMAND="s: \* Copyright (C) 20[0-9][0-9].*: \* Copyright (C) $YEAR Artem Pavlenko:g"
|
|
|
|
for d in "${DIRECTORIES[@]}"
|
|
do
|
|
for f in $(find "../../$d" -type f \( -iname '*.hpp' -o -iname '*.cpp' -o -iname '*.h' -o -iname '*.c' \)); do
|
|
$SED "$COMMAND" $f
|
|
done
|
|
done
|