Skip to content
Snippets Groups Projects
Commit e0833485 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

update copyright script

parent 0302afb8
No related branches found
No related tags found
No related merge requests found
#!/bin/sh -
files=`find ../.. -not -path "*.svn*" -and -not -path "*lib*" -and -not -path "*bin*" -and -not -name "update_copyright.sh" | xargs grep 'Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle' -sl`
echo $files
for file in $files
do
sed "s|(C) 1997-2009 C|(C) 1997-2010 C|g" $file > $file.tmp
echo modified $file
rm -f $file
mv $file.tmp $file
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment