- small script to keep copyright aligned in all files (bindings have different copyright owners, need to understand if we need to keep those as they are)

This commit is contained in:
kunitoki 2011-10-23 15:11:14 +02:00
parent f1fb0c1939
commit f85965142d

View file

@ -0,0 +1,20 @@
#!/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" )
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