diff options
author | Javier Viguera <javier.viguera@digi.com> | 2010-07-27 11:13:28 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-07-28 21:01:55 +0200 |
commit | a3f71001c30f8927495828da9888bcef86e24035 (patch) | |
tree | e075ae51c05708c9f292a01c326ef15b74545c5a | |
parent | 17e0e43c3522882e2ac8e921132540ba01a1c66c (diff) | |
download | busybox-w32-a3f71001c30f8927495828da9888bcef86e24035.tar.gz busybox-w32-a3f71001c30f8927495828da9888bcef86e24035.tar.bz2 busybox-w32-a3f71001c30f8927495828da9888bcef86e24035.zip |
find_stray_empty_lines: fix tail "invalid context" error
"tail -1" works only with one input file. Using it with multiple input
files throws following error on Ubuntu systems:
tail: option used in invalid context
Adding "-n" makes it work on all cases.
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-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" |