diff options
-rwxr-xr-x | scripts/find_stray_empty_lines | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/find_stray_empty_lines b/scripts/find_stray_empty_lines index 60873dac1..17a2d4a49 100755 --- a/scripts/find_stray_empty_lines +++ b/scripts/find_stray_empty_lines | |||
@@ -7,7 +7,7 @@ grep -n -B1 -r $'^\t*}' . | grep -A1 '.[ch]-[0-9]*-$' | |||
7 | grep -n -A1 -r $'^\t*{' . | grep -B1 '.[ch]-[0-9]*-$' | 7 | grep -n -A1 -r $'^\t*{' . | grep -B1 '.[ch]-[0-9]*-$' |
8 | 8 | ||
9 | # find trailing empty lines | 9 | # find trailing empty lines |
10 | find -type f | xargs tail -1 | while read file; do | 10 | find -type f | xargs tail -n1 | while read file; do |
11 | test x"$file" = x"" && continue | 11 | test x"$file" = x"" && continue |
12 | read lastline | 12 | read lastline |
13 | #echo "|$file|$lastline" | 13 | #echo "|$file|$lastline" |