Simple script to bump year in overall project copyright statements.
[AROS.git] / scripts / bumpyear.sh
blob53e45a90a99a8892b5d89890fc2ce0a8134b1eec
1 #!/bin/bash
3 START_YEAR=1995
4 OLD_YEAR=2013
5 NEW_YEAR=2014
6 SUB=s/$START_YEAR-$OLD_YEAR/$START_YEAR-$NEW_YEAR/g
7 echo "$SUB"
9 sed -i "$SUB" AROS/rom/dos/boot.c
10 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/aboutaros.cd
11 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/croatian.ct
12 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/czech.ct
13 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/danish.ct
14 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/dutch.ct
15 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/finnish.ct
16 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/french.ct
17 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/german.ct
18 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/italian.ct
19 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/polish.ct
20 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/portuguese.ct
21 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/russian.ct
22 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/spanish.ct
23 sed -i "$SUB" AROS/workbench/system/AboutAROS/catalogs/swedish.ct
25 sed -i "$SUB" Documentation/targets/www/template/languages/cs
26 sed -i "$SUB" Documentation/targets/www/template/languages/de
27 sed -i "$SUB" Documentation/targets/www/template/languages/el
28 sed -i "$SUB" Documentation/targets/www/template/languages/en
29 sed -i "$SUB" Documentation/targets/www/template/languages/es
30 sed -i "$SUB" Documentation/targets/www/template/languages/fi
31 sed -i "$SUB" Documentation/targets/www/template/languages/fr
32 sed -i "$SUB" Documentation/targets/www/template/languages/it
33 sed -i "$SUB" Documentation/targets/www/template/languages/nl
34 sed -i "$SUB" Documentation/targets/www/template/languages/pl
35 sed -i "$SUB" Documentation/targets/www/template/languages/pt
36 sed -i "$SUB" Documentation/targets/www/template/languages/ru
37 sed -i "$SUB" Documentation/targets/www/template/languages/sv