2010-07-26 05:05:44 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
grep -n -B1 -r $'^\t*}$' . | grep -A1 '.[ch]-[0-9]*-$'
|
|
|
|
grep -n -A1 -r $'^\t*{$' . | grep -B1 '.[ch]-[0-9]*-$'
|
|
|
|
# or (less surefire ones):
|
|
|
|
grep -n -B1 -r $'^\t*}' . | grep -A1 '.[ch]-[0-9]*-$'
|
|
|
|
grep -n -A1 -r $'^\t*{' . | grep -B1 '.[ch]-[0-9]*-$'
|
2010-07-26 05:19:12 +05:30
|
|
|
|
|
|
|
# find trailing empty lines
|
2010-07-29 00:59:19 +05:30
|
|
|
find -type f | while read file; do
|
2010-07-26 05:19:12 +05:30
|
|
|
test x"$file" = x"" && continue
|
2010-07-29 00:59:19 +05:30
|
|
|
tail -n1 $file | while read lastline
|
|
|
|
do
|
|
|
|
#echo "|$file|$lastline"
|
|
|
|
if test x"$lastline" = x""; then
|
2010-07-26 05:19:12 +05:30
|
|
|
echo "$file"
|
2010-07-29 00:59:19 +05:30
|
|
|
fi
|
|
|
|
done
|
2010-07-26 05:19:12 +05:30
|
|
|
done
|