1#! /bin/sh 2 3# Remove '#line ...' lines to not confuse mkdep(1). 4find . -name '*.[ch]pp' -print | 5xargs grep -l '^#line' | 6while read f; do 7 mv $f $f.orig 8 sed '/^#line/d' <$f.orig >$f 9 rm $f.orig 10done 11 12exit 0 13