Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
10-11-2013, 06:12 AM
|
#1
|
LQ Newbie
Registered: Jul 2012
Posts: 12
Rep:
|
Thorough search for a text file with a specific keyword inside
I seem to have lost a specific file of mine. I forgot its name and the directory it is in, but I know what is inside. I know that (1) the filename ends in ".txt" and (2) I know a unique keyword that I am sure is inside this text file (say, "mykeyword"). Armed with these two facts, what is the best/fastest linux command that I can use to search my entire disk for this specific file?
|
|
|
10-11-2013, 06:30 AM
|
#2
|
LQ Guru
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509
|
Code:
locate -0 '*.txt' | xargs -0 grep mykeyword
|
|
|
10-11-2013, 07:03 AM
|
#3
|
Senior Member
Registered: Aug 2011
Location: Dublin
Distribution: Centos 5 / 6 / 7 / 8
Posts: 3,539
|
Code:
find / -name "*.txt" -exec grep mykeyword {} \;
while slower, doesn't rely on the "locate" database being up-to-date
|
|
1 members found this post helpful.
|
10-11-2013, 09:08 AM
|
#4
|
LQ Newbie
Registered: Jul 2012
Posts: 12
Original Poster
Rep:
|
Thanks for the replies. I was not successful with the locate command. I might have an obsolete database.
Code:
find / -name "*.txt" -exec grep mykeyword {} \;
was semi-successful: it managed to display the line in which "mykeyword" was in the file I was looking for. But unfortunately the filename nor the path to this file was not displayed, just the single line inside the file. So I unfortunately still can't locate the file.
Last edited by educateme; 10-11-2013 at 10:33 AM.
|
|
|
10-11-2013, 09:22 AM
|
#5
|
Senior Member
Registered: Aug 2011
Location: Dublin
Distribution: Centos 5 / 6 / 7 / 8
Posts: 3,539
|
Quote:
Originally Posted by educateme
Thanks for the replies. I was not successful with the locate command. I might have an obsolete database.
Code:
locate -0 '*.txt' | xargs -0 grep mykeyword
was semi-successful: it managed to display the line in which "mykeyword" was in the file I was looking for. But unfortunately the filename nor the path to this file was not displayed, just the single line inside the file. So I unfortunately still can't locate the file.
|
try:
-H tells grep to give the filename
|
|
|
10-11-2013, 10:32 AM
|
#6
|
LQ Newbie
Registered: Jul 2012
Posts: 12
Original Poster
Rep:
|
Splendid!
Code:
find / -name "*.txt" -exec grep -H mykeyword {} \;
works. Thanks.
|
|
|
10-11-2013, 10:34 AM
|
#7
|
Senior Member
Registered: Aug 2011
Location: Dublin
Distribution: Centos 5 / 6 / 7 / 8
Posts: 3,539
|
Quote:
Originally Posted by educateme
Splendid!
Code:
find / -name "*.txt" -exec grep -H mykeyword {} \;
works. Thanks.
|
You're welcome, feel free to mark my post as helpful and mark this thread as solved
|
|
|
All times are GMT -5. The time now is 06:21 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|