I think I have found why it is not recursing. The parameter of grep is *.c* *.C* But not any directory has such a pattern, so it will always remain at the top directory. So the fix is to use find: find . -name "*.c*" -o -name "*.h*" | grep KAboutData That should work better! Have a nice day! On Monday 13 September 2004 23:46, Nicolas Goutte wrote: > On Monday 13 September 2004 23:24, David Faure wrote: > > On Monday 13 September 2004 23:06, Nicolas Goutte wrote: > > > Could someone check if Kivio has bug #87536 too? (...) > > > And of course please also check other applications not having code in > > > their "topsubdir". (Krita?) > > > > I suggest using grep -r :) > > H'm looking again in admin/cvs.sh (line 578) it already uses it. But then > why it is not working? > > (Perhaps the *.C* in the line should be replaced by *.h* as anyway using C > as extension is against one of the KDE policies in the meantime.) > > Have a nice day! > > _______________________________________________ > koffice-devel mailing list > koffice-devel@mail.kde.org > https://mail.kde.org/mailman/listinfo/koffice-devel _______________________________________________ koffice-devel mailing list koffice-devel@mail.kde.org https://mail.kde.org/mailman/listinfo/koffice-devel