Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Oct 1999 10:06:18 +0200
From:      "Victor Ivanov" <v0rbiz@icon-bg.net>
To:        <freebsd-hackers@FreeBSD.ORG>
Subject:   Re: Search a symbol in the source tree
Message-ID:  <005701bf1551$d7788f80$040b38d4@plamen.icon-bg.net>

next in thread | raw e-mail | index | archive | help


>
>Can anyone suggest me a way of searching symbols in the entire /usr/src
>tree? I normally use grep */*.  But grep does not work recursively, right?
>Something like a small shell script may do this. Thanks a lot.
>
>-Zhihui
>


find . -name '*' | xargs grep expression

...or something :)

regards,
v0rbiz



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-hackers" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?005701bf1551$d7788f80$040b38d4>