source: MondoRescue/branches/3.2/mindi-busybox/scripts/find_stray_empty_lines@ 3232

Last change on this file since 3232 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
  • Property svn:executable set to *
File size: 554 bytes
Line 
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
Note: See TracBrowser for help on using the repository browser.