On Mon, 2008-02-25 at 16:04 -0600, Jared Johnson wrote:
> > Try: grep -i AddTimer /usr/share/perl5/Qpsmptd/TcpServer.pm
> > 
> > the * won't match past the / in the shell.  Also try:
> > 
> >         grep -i add ... | grep -i timer
> 
> grep -ri timer /usr/share/perl5/Qpsmtpd/ /usr/share/perl5/Qpsmtpd.pm
> 
> no results there either :/
> 
> a quick browse through svn doesn't show any .*[tT]imer subs either..
> 
> -Jared

Well, it's object-oriented and uses inheritance ... let me try find
-exec ...

$ svn up
At revision 849.
$ cd ..
$ svn export trunk gt

I do the export to lose all the .svn cruft.

$ find gt -name '*.pm' -exec grep -i AddTimer '{}' \;
Danga::Socket->AddTimer(15, \&_do_cleanup);
    Danga::Socket->AddTimer(15, \&_do_cleanup);
        $self->AddTimer(0, sub {

There you go.

-- 
--gh


Reply via email to