Johannes Tax wrote:
I'm trying to figure out how to find a certain string inside a bunch of
files. If I, for examples, look for a certain function in a large source
tree, I could do
cat `find . -name '*.c'` | grep 'a_certain_function'
but this seems quite awkward, furthermore it doesn't help t
Mike Bird wrote:
On Saturday 25 August 2007 14:34, Johannes Tax wrote:
On [Sat, 25.08.2007 13:15], Mike Bird wrote:
grep -l 'a_certain_function' $(find . -name '*.c')
That's exactly what I need. It also shows that I have to investigate the
grep command a little bit further ...
BTW, unlike ba
On Sun, Aug 26, 2007 at 07:46:01AM +0200, Jonathan Kaye wrote:
> Johannes Tax wrote:
>
> > Hi,
> >
> > I'm trying to figure out how to find a certain string inside a bunch of
> > files. If I, for examples, look for a certain function in a large source
> > tree, I could do
> >
> > cat `find . -na
Johannes Tax wrote:
> Hi,
>
> I'm trying to figure out how to find a certain string inside a bunch of
> files. If I, for examples, look for a certain function in a large source
> tree, I could do
>
> cat `find . -name '*.c'` | grep 'a_certain_function'
>
> but this seems quite awkward, furtherm
On Sat, 25 Aug 2007 17:37:05 -0500, Neil Gunton wrote:
>> I'm trying to figure out how to find a certain string inside a bunch of
>> files. If I, for examples, look for a certain function in a large source
>> tree, I could do
>>
>> cat `find . -name '*.c'` | grep 'a_certain_function'
>>
>> but t
Johannes Tax wrote:
Hi,
I'm trying to figure out how to find a certain string inside a bunch of
files. If I, for examples, look for a certain function in a large source
tree, I could do
cat `find . -name '*.c'` | grep 'a_certain_function'
but this seems quite awkward, furthermore it doesn't he
Hi,
I'm trying to figure out how to find a certain string inside a bunch of
files. If I, for examples, look for a certain function in a large source
tree, I could do
cat `find . -name '*.c'` | grep 'a_certain_function'
but this seems quite awkward, furthermore it doesn't help that much
because I
On Saturday 25 August 2007 14:34, Johannes Tax wrote:
> On [Sat, 25.08.2007 13:15], Mike Bird wrote:
> > grep -l 'a_certain_function' $(find . -name '*.c')
>
> That's exactly what I need. It also shows that I have to investigate the
> grep command a little bit further ...
BTW, unlike backquote, do
On Sat, Aug 25, 2007 at 11:16:37PM +0200, Johannes Tax wrote:
> Hi,
>
> I'm trying to figure out how to find a certain string inside a bunch of
> files. If I, for examples, look for a certain function in a large source
> tree, I could do
>
> cat `find . -name '*.c'` | grep 'a_certain_function'
>
On Sat, 25 Aug 2007, Johannes Tax wrote:
Hi,
I'm trying to figure out how to find a certain string inside a bunch of
files. If I, for examples, look for a certain function in a large source
tree, I could do
cat `find . -name '*.c'` | grep 'a_certain_function'
but this seems quite awkward, fur
On [Sat, 25.08.2007 13:15], Mike Bird wrote:
> > cat `find . -name '*.c'` | grep 'a_certain_function'
> >
> > but this seems quite awkward, furthermore it doesn't help that much
> > because I don't know in which file the string was found. Maybe there's a
> > tool that makes it possible to find a st
Hi Johannes.
Johannes Tax, 25.08.2007 23:16:
> I'm trying to figure out how to find a certain string inside a bunch of
> files. If I, for examples, look for a certain function in a large source
> tree, I could do
>
> cat `find . -name '*.c'` | grep 'a_certain_function'
>
> but this seems quite a
On Saturday 25 August 2007 14:16, Johannes Tax wrote:
> I'm trying to figure out how to find a certain string inside a bunch of
> files. If I, for examples, look for a certain function in a large source
> tree, I could do
>
> cat `find . -name '*.c'` | grep 'a_certain_function'
>
> but this seems q
Hi,
I'm trying to figure out how to find a certain string inside a bunch of
files. If I, for examples, look for a certain function in a large source
tree, I could do
cat `find . -name '*.c'` | grep 'a_certain_function'
but this seems quite awkward, furthermore it doesn't help that much
because I
14 matches
Mail list logo