> >> Find . -name "*Some-Name*" -type f -print | xargs grep 'Some-Info' > >> Hate answering with just one line of credible info , But . > > > >The above would grep every file. It takes 1 minute and 9.5 seconds. > >So the distributed maintainer information does not scale well at all. > > No it doesn't. It allows you to search for files of a specific naming > pattern and greps those. So if you needed to know the maintainers of all > the config.in files, you say: > > find . -name "*onfig.in" -type f -print | xargs grep 'P: ' That was an easy problem, and try it to see all the bad matches! This would be more normal: find . -type f | xargs egrep -i8 '^[^A-Z]*[A-Z]: .*(net|ip|tcp|eth|ppp)' That is not a nice and easy command for most people, and if it isn't exactly right you just wasted over a minute. _______________________________________________ kbuild-devel mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/kbuild-devel
- [kbuild-devel] Re: Request for comment -- a bett... Eric S. Raymond
- [kbuild-devel] Re: Request for comment -- a better at... Horst von Brand
- [kbuild-devel] Re: Request for comment -- a bett... Eric S. Raymond
- Re: [kbuild-devel] Re: Request for comment -- a ... Eric S. Raymond
- [kbuild-devel] Re: Request for comment -- a better at... Albert D. Cahalan
- [kbuild-devel] Re: Request for comment -- a bett... Anuradha Ratnaweera
- [kbuild-devel] Re: Request for comment -- a better at... Alexander Viro
- [kbuild-devel] Re: Request for comment -- a better at... Horst von Brand
- [kbuild-devel] Re: Request for comment -- a better at... Jonathan Morton
- [kbuild-devel] Re: Request for comment -- a bett... Alan Cox
- [kbuild-devel] Re: Request for comment -- a bett... Albert D. Cahalan
- [kbuild-devel] Re: Request for comment -- a better at... Albert D. Cahalan
- [kbuild-devel] Re: Request for comment -- a bett... Eric S. Raymond
- [kbuild-devel] Re: Request for comment -- a better at... Francois Romieu
- [kbuild-devel] Re: Request for comment -- a bett... Eric S. Raymond
- [kbuild-devel] Re: Request for comment -- a better at... Francois Romieu
- [kbuild-devel] Re: Request for comment -- a better at... Eric S. Raymond
- [kbuild-devel] Re: Request for comment -- a better at... Eric S. Raymond
- Re: [kbuild-devel] Re: Request for comment -- a bette... Giacomo A. Catenazzi