Re: [no patch] Remove more double inclusions

2007-08-19 Thread Jesper Juhl
On 19/08/07, Jan Engelhardt <[EMAIL PROTECTED]> wrote: > Hi, > > > > Pipes for the world... > > find . -type f -iname "*.[ch]" -print0 | \ > xargs -0 grep -P '#\s*include' /dev/null | \ > sort | \ > uniq -c | \ > sort -gr | \ > less -MSi > > turns up

[no patch] Remove more double inclusions

2007-08-19 Thread Jan Engelhardt
Hi, Pipes for the world... find . -type f -iname "*.[ch]" -print0 | \ xargs -0 grep -P '#\s*include' /dev/null | \ sort | \ uniq -c | \ sort -gr | \ less -MSi turns up all the double-inclusions. Needs someone to review, because odd things like

[no patch] Remove more double inclusions

2007-08-19 Thread Jan Engelhardt
Hi, Pipes for the world... find . -type f -iname *.[ch] -print0 | \ xargs -0 grep -P '#\s*include' /dev/null | \ sort | \ uniq -c | \ sort -gr | \ less -MSi turns up all the double-inclusions. Needs someone to review, because odd things like

Re: [no patch] Remove more double inclusions

2007-08-19 Thread Jesper Juhl
On 19/08/07, Jan Engelhardt [EMAIL PROTECTED] wrote: Hi, Pipes for the world... find . -type f -iname *.[ch] -print0 | \ xargs -0 grep -P '#\s*include' /dev/null | \ sort | \ uniq -c | \ sort -gr | \ less -MSi turns up all the