diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-26 01:49:12 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-26 01:49:12 +0200 |
commit | ba2dcccd799963ac74ee92300df494947820608b (patch) | |
tree | e27140083f1f4faebe86cde97a3dabbff5ac7f9e /scripts/find_stray_empty_lines | |
parent | 0f8960542f6f5ae258e72e56ba7296a01a9c10af (diff) | |
download | busybox-w32-ba2dcccd799963ac74ee92300df494947820608b.tar.gz busybox-w32-ba2dcccd799963ac74ee92300df494947820608b.tar.bz2 busybox-w32-ba2dcccd799963ac74ee92300df494947820608b.zip |
*: trailing empty lines removed
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts/find_stray_empty_lines')
-rwxr-xr-x | scripts/find_stray_empty_lines | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/find_stray_empty_lines b/scripts/find_stray_empty_lines index 58daf2f0c..60873dac1 100755 --- a/scripts/find_stray_empty_lines +++ b/scripts/find_stray_empty_lines | |||
@@ -5,3 +5,13 @@ grep -n -A1 -r $'^\t*{$' . | grep -B1 '.[ch]-[0-9]*-$' | |||
5 | # or (less surefire ones): | 5 | # or (less surefire ones): |
6 | grep -n -B1 -r $'^\t*}' . | grep -A1 '.[ch]-[0-9]*-$' | 6 | 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 | |||
9 | # find trailing empty lines | ||
10 | find -type f | xargs tail -1 | while read file; do | ||
11 | test x"$file" = x"" && continue | ||
12 | read lastline | ||
13 | #echo "|$file|$lastline" | ||
14 | if test x"$lastline" = x""; then | ||
15 | echo "$file" | ||
16 | fi | ||
17 | done | ||