diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-07-28 21:29:19 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-07-28 21:29:19 +0200 |
commit | 3d615b8a4153d791164e44687831392fed26d9b4 (patch) | |
tree | 66b112a84598e24266785dfd565beab34880d92e /scripts | |
parent | a3f71001c30f8927495828da9888bcef86e24035 (diff) | |
download | busybox-w32-3d615b8a4153d791164e44687831392fed26d9b4.tar.gz busybox-w32-3d615b8a4153d791164e44687831392fed26d9b4.tar.bz2 busybox-w32-3d615b8a4153d791164e44687831392fed26d9b4.zip |
find_stray_empty_lines: make it work
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/find_stray_empty_lines | 12 |
1 files changed, 7 insertions, 5 deletions
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]*-$' | |||
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 -n1 | while read file; do | 10 | find -type f | while read file; do |
11 | test x"$file" = x"" && continue | 11 | test x"$file" = x"" && continue |
12 | read lastline | 12 | tail -n1 $file | while read lastline |
13 | #echo "|$file|$lastline" | 13 | do |
14 | if test x"$lastline" = x""; then | 14 | #echo "|$file|$lastline" |
15 | if test x"$lastline" = x""; then | ||
15 | echo "$file" | 16 | echo "$file" |
16 | fi | 17 | fi |
18 | done | ||
17 | done | 19 | done |