From 6b76247c200a3e0faa4bdd1680e38dc8cea7bd79 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 18 Jul 2011 13:56:22 +0200 Subject: [PATCH] Split long line --- fixup-headers/fixup.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fixup-headers/fixup.sh b/fixup-headers/fixup.sh index dc42a8f..1414047 100755 --- a/fixup-headers/fixup.sh +++ b/fixup-headers/fixup.sh @@ -4,7 +4,10 @@ if test -z "$R"; then echo "Supply range. Eg 2006-2009" exit 1 fi -for f in `find . \( -name '*.[ch]' -or -name Makefile.am -or -name makefile -or -name '*.cpp' -or -name '*.hpp' -or -name license.txt -or -name README -or -name configure.ac -or -name '*.nsi' \) -print`; do +for f in `find . \( -name '*.[ch]' -or -name Makefile.am -or -name makefile \ + -or -name '*.cpp' -or -name '*.hpp' -or -name license.txt \ + -or -name README -or -name configure.ac -or -name '*.nsi' \ + -or -name '*.rnc' \) -print`; do echo $f sed "s/Copyri.*20.*Data/Copyright (C) $R Index Data/g" < $f >${f}_new if diff $f ${f}_new >/dev/null; then -- 1.7.10.4