From ca18d01630a70147e69de235e8f5c2c3e4e0a44b Mon Sep 17 00:00:00 2001 From: krzys-h Date: Tue, 14 Oct 2014 15:07:44 +0200 Subject: Updated license from PPC to TerranovaTeam Polish Portal of Colobot (PPC) changed name to International Colobot Community (ICC). The part of the community actively working on the game is known as TerranovaTeam. --- tools/update-license.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 tools/update-license.sh (limited to 'tools') diff --git a/tools/update-license.sh b/tools/update-license.sh new file mode 100755 index 0000000..870e173 --- /dev/null +++ b/tools/update-license.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# Replaces license text with contents of file provided as an argument +if [ ! $# -eq 1 ]; then + echo "Usage: $0 [file with new license header]" + exit 1 +fi +find . -name "*.cpp" -or -name "*.h" | while read file; do + echo $file + sed '/\/\/ \* This.*/,/If not\, see.*/d' $file > $file.tmp + cat $1 $file.tmp > $file + rm $file.tmp +done -- cgit v1.2.3-1-g7c22