From: "Michał Kiedrowicz" <michal.kiedrowicz@gmail.com>
To: "René Scharfe" <rene.scharfe@lsrfire.ath.cx>
Cc: Git Mailing List <git@vger.kernel.org>
Subject: Re: [PATCH/RFC] grep: Add --directories option.
Date: Fri, 10 Jul 2009 18:41:19 +0200 [thread overview]
Message-ID: <20090710184119.072e5a0f@gmail.com> (raw)
In-Reply-To: <4A56EED7.9040008@lsrfire.ath.cx>
Hi,
René Scharfe <rene.scharfe@lsrfire.ath.cx> wrote:
>
> I suspect the patch would shrink significantly if you moved "int
> recurse" into struct grep_opt, because then you wouln't need to add it
> as a parameter to the grep_* functions.
Yes. At the beginning, I placed 'int recurse' in that struct. However, I
thought that this struct does not say anything about selecting files,
but it says how to grep files (invert, count, fixed [string], binary
etc.). Most of opts (if not all) are used in grep.c, not builtin-grep.c.
>
> > diff --git a/t/t7002-grep.sh b/t/t7002-grep.sh
> > index 7868af8..6d1faf4 100755
> > --- a/t/t7002-grep.sh
> > +++ b/t/t7002-grep.sh
> > @@ -22,7 +22,9 @@ test_expect_success setup '
> > echo zzz > z &&
> > mkdir t &&
> > echo test >t/t &&
> > - git add file w x y z t/t &&
> > + mkdir t/a &&
> > + echo aa aa aa aa >t/a/a &&
> > + git add file w x y z t/t t/a/a &&
>
> This conflicts with a recent change.
Yeah, I found out that...
>
> It seems your patch still allows recursion, one level deep. In git's
> repo:
>
> $ grep -l --directories=skip GNU compat
>
> $ grep -l --directories=skip GNU compat/*
> compat/qsort.c
> compat/snprintf.c
>
> $ git grep -l --directories=skip GNU compat
> compat/qsort.c
> compat/snprintf.c
>
> $ git grep -l --directories=skip GNU compat/*
> compat/fnmatch/fnmatch.c
> compat/fnmatch/fnmatch.h
> compat/nedmalloc/malloc.c.h
> compat/nedmalloc/nedmalloc.c
> compat/nedmalloc/nedmalloc.h
> compat/qsort.c
> compat/regex/regex.c
> compat/regex/regex.h
> compat/snprintf.c
>
> René
Actually, this is what I wanted: Do not descend to subdirectories of
selected directories. After a while, I think this action should be
called "read [files in that directory]", not "skip".
next prev parent reply other threads:[~2009-07-10 16:41 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-09 19:20 [PATCH/RFC] grep: Add --directories option Michał Kiedrowicz
2009-07-10 7:33 ` René Scharfe
2009-07-10 8:11 ` Junio C Hamano
2009-07-10 16:48 ` Michał Kiedrowicz
2009-07-10 16:41 ` Michał Kiedrowicz [this message]
2009-07-10 8:02 ` Stephen Boyd
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090710184119.072e5a0f@gmail.com \
--to=michal.kiedrowicz@gmail.com \
--cc=git@vger.kernel.org \
--cc=rene.scharfe@lsrfire.ath.cx \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).