From: Roland Häder Date: Fri, 23 Sep 2022 12:52:40 +0000 (+0200) Subject: updated copyright years X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=eb6ed39202c099b7121c79fe2ec538aabc7aa53d;p=jprojects-scripts.git updated copyright years Signed-off-by: Roland Häder --- diff --git a/update-year-jprojects.sh b/update-year-jprojects.sh index e43cf52..9672a32 100755 --- a/update-year-jprojects.sh +++ b/update-year-jprojects.sh @@ -19,10 +19,8 @@ for project in ${LIST}; do echo "$0: Updating (c) year in '${project}' ..." # Update both years when a new year has reached - find */ -type f -print0 | xargs -0 sed -i 's/2016, 2020/2016 - 2020/g' - find */ -type f -print0 | xargs -0 sed -i 's/2017, 2020/2017 - 2020/g' - find */ -type f -print0 | xargs -0 sed -i 's/2017 Free Software/2020 Free Software/g' - find */ -type f -print0 | xargs -0 sed -i 's/2017 Roland Häder/2020 Free Software Foundation/g' + find */ -type f -print0 | xargs -0 sed -i 's/2020, 2022/2020 - 2022/g' + find */ -type f -print0 | xargs -0 sed -i 's/2020 Free Software/2022 Free Software/g' DIFF=$(git diff)