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-27 14:43:28 +05:30
|
|
|
find -type f | xargs tail -n1 | while read file; do
|
2010-07-26 05:19:12 +05:30
|
|
|
test x"$file" = x"" && continue
|
|
|
|
read lastline
|
|
|
|
#echo "|$file|$lastline"
|
|
|
|
if test x"$lastline" = x""; then
|
|
|
|
echo "$file"
|
|
|
|
fi
|
|
|
|
done
|