X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=scripts%2Ffind_stray_empty_lines;h=aae18f99b1ae08ca70459cd14b14d8a134ce2d20;hb=9a4100cf53f75356854ce752374babf8135c3f42;hp=17a2d4a49a2dc4b53dbbb68b2c650b71a4a446f4;hpb=a3f71001c30f8927495828da9888bcef86e24035;p=oweals%2Fbusybox.git diff --git a/scripts/find_stray_empty_lines b/scripts/find_stray_empty_lines index 17a2d4a49..aae18f99b 100755 --- a/scripts/find_stray_empty_lines +++ b/scripts/find_stray_empty_lines @@ -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