- 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:
parent
f1fb0c1939
commit
f85965142d
1 changed files with 20 additions and 0 deletions
20
utils/src_utils/fix_copyright.sh
Executable file
20
utils/src_utils/fix_copyright.sh
Executable 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
|
Loading…
Add table
Reference in a new issue