find_stray_empty_lines: make it work
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
This commit is contained in:
parent
a3f71001c3
commit
3d615b8a41
@ -7,11 +7,13 @@ grep -n -B1 -r $'^\t*}' . | grep -A1 '.[ch]-[0-9]*-$'
|
|||||||
grep -n -A1 -r $'^\t*{' . | grep -B1 '.[ch]-[0-9]*-$'
|
grep -n -A1 -r $'^\t*{' . | grep -B1 '.[ch]-[0-9]*-$'
|
||||||
|
|
||||||
# find trailing empty lines
|
# 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
|
test x"$file" = x"" && continue
|
||||||
read lastline
|
tail -n1 $file | while read lastline
|
||||||
#echo "|$file|$lastline"
|
do
|
||||||
if test x"$lastline" = x""; then
|
#echo "|$file|$lastline"
|
||||||
|
if test x"$lastline" = x""; then
|
||||||
echo "$file"
|
echo "$file"
|
||||||
fi
|
fi
|
||||||
|
done
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user