find_stray_empty_lines: make it work
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 28 Jul 2010 19:29:19 +0000 (21:29 +0200)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 28 Jul 2010 19:29:19 +0000 (21:29 +0200)
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
scripts/find_stray_empty_lines

index 17a2d4a..aae18f9 100755 (executable)
@@ -7,11 +7,13 @@ grep -n -B1 -r $'^\t*}' . | grep -A1 '.[ch]-[0-9]*-$'
 grep -n -A1 -r $'^\t*{' . | grep -B1 '.[ch]-[0-9]*-$'
 
 # find trailing empty lines
-find -type f | xargs tail -n1 | while read file; do
+find -type f | while read file; do
         test x"$file" = x"" && continue
-        read lastline
-        #echo "|$file|$lastline"
-        if test x"$lastline" = x""; then
+        tail -n1 $file | while read lastline
+        do
+          #echo "|$file|$lastline"
+          if test x"$lastline" = x""; then
                 echo "$file"
-        fi
+          fi
+        done
 done