summaryrefslogtreecommitdiff
path: root/scripts/find_stray_empty_lines
blob: 58daf2f0cc133a0f833b8ed47b2304cbbd0880a2 (plain)
1
2
3
4
5
6
7
#!/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]*-$'