[racket-dev] full tree text search

From: Jon Rafkind (rafkind at cs.utah.edu)
Date: Thu Dec 9 01:19:53 EST 2010

On 12/08/2010 10:12 PM, Eli Barzilay wrote:
> Is this different from a recursive grep?
>
> (See also `git grep' -- and there's a web interface for that,
> http://git.racket-lang.org//plt?a=search&h=HEAD&st=grep&s=foo )
>

Oh I had no idea git grep existed. Well that looks good enough for now.

(BTW, recursive grep on the command line is not so trivial..
$ find . -name "*.rkt" | xargs grep foo
)


Posted on the dev mailing list.