forked from tud-zih-energy/FIRESTARTER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate_headers.sh
executable file
·37 lines (33 loc) · 1.63 KB
/
update_headers.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
###############################################################################
# FIRESTARTER - A Processor Stress Test Utility
# Copyright (C) 2019 TU Dresden, Center for Information Services and High
# Performance Computing
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Contact: [email protected]
###############################################################################
# contact email address
YEAR=`date +%Y`
# update copyright year definition in firestarter_global.h and main_win64.c
sed -i 's/COPYRIGHT_YEAR [0-9][0-9]*/COPYRIGHT_YEAR '$YEAR'/' source_files/firestarter_global.h
sed -i 's/COPYRIGHT_YEAR [0-9][0-9]*/COPYRIGHT_YEAR '$YEAR'/' source_files/main_win64.c
# update headers TODO increase line number if header gets larger
for i in source_files/* templates/* USAGE COPYING CHANGELOG code-generator.py config.cfg update_headers.sh
do
sed -i '1,20 s/Copyright (C) [0-9][0-9]*/Copyright (C) '$YEAR'/' $i
sed -i '1,20 s/Contact: [a-zA-Z][-a-zA-Z0-9.@\ ]*/Contact: '$CONTACT'/' $i
done