diff options
Diffstat (limited to 'scripts/update-copiright.sh')
-rwxr-xr-x | scripts/update-copiright.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/update-copiright.sh b/scripts/update-copiright.sh new file mode 100755 index 0000000..798d6d3 --- /dev/null +++ b/scripts/update-copiright.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +for i in `grep -sE 'Copyright \(C\) 2022.*' * | sed 's/:.*//'`; do + sed -E "s/Copyright \(C\) 2022.*/Copyright (C) 2022-`date +%Y` Alessandro Iezzi <aiezzi AT alessandroiezzi DOT it>/" +done + |