aboutsummaryrefslogtreecommitdiff
path: root/scripts/find_stray_empty_lines
blob: 60873dac159cd271944ef38d5c303d8d19fc3c0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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]*-$'

# find trailing empty lines
find -type f | xargs tail -1 | while read file; do
        test x"$file" = x"" && continue
        read lastline
        #echo "|$file|$lastline"
        if test x"$lastline" = x""; then
                echo "$file"
        fi
done