busybox/scripts/find_stray_empty_lines
<<
>>
Prefs
   1#!/bin/sh
   2
   3grep -n -B1 -r $'^\t*}$' . | grep -A1 '.[ch]-[0-9]*-$'
   4grep -n -A1 -r $'^\t*{$' . | grep -B1 '.[ch]-[0-9]*-$'
   5# or (less surefire ones):
   6grep -n -B1 -r $'^\t*}' . | grep -A1 '.[ch]-[0-9]*-$'
   7grep -n -A1 -r $'^\t*{' . | grep -B1 '.[ch]-[0-9]*-$'
   8
   9# find trailing empty lines
  10find -type f | while read file; do
  11        test x"$file" = x"" && continue
  12        tail -n1 $file | while read lastline
  13        do
  14          #echo "|$file|$lastline"
  15          if test x"$lastline" = x""; then
  16                echo "$file"
  17          fi
  18        done
  19done
  20