Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's 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.
|
|
01-29-2010, 11:51 AM
|
#1
|
Member
Registered: Sep 2002
Distribution: CentOS
Posts: 170
Rep:
|
fastest way to search for strings
Is there a faster way to search for a file containing a given string than using grep -re "string" /
This takes a long time to search through the entire system, so I was wondering if there is a faster way. I don't know the name of the file, just that it will contain a given string.
Thanks!
|
|
|
01-29-2010, 01:45 PM
|
#2
|
Senior Member
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,187
|
Look at the find command (info find) and the locate command (info locate). The locate is faster since it uses the data base of file names and locations so it doesn't have to read the drive for file names. On the other hand, find lets you filter the files by type, so you could limit the searching to files that, for example, are not executable or that were in system directories.
In fact, running grep -ar <expession> / may cause an infinite wait since it will eventually search /dev/null or /dev/random, and those (pseudo) files are infinitely long.
|
|
|
01-29-2010, 06:39 PM
|
#3
|
Member
Registered: Sep 2002
Distribution: CentOS
Posts: 170
Original Poster
Rep:
|
Quote:
Originally Posted by PTrenholme
Look at the find command (info find) and the locate command (info locate). The locate is faster since it uses the data base of file names and locations so it doesn't have to read the drive for file names. On the other hand, find lets you filter the files by type, so you could limit the searching to files that, for example, are not executable or that were in system directories.
In fact, running grep -ar <expession> / may cause an infinite wait since it will eventually search /dev/null or /dev/random, and those (pseudo) files are infinitely long.
|
Thanks for the reply, but as far as I know, locate and find only search by file name, not the contents of the file? I don't know the name of the file or type, just that it contains a certain string on the inside...
|
|
|
01-29-2010, 10:08 PM
|
#4
|
Member
Registered: Oct 2004
Location: Atlanta
Distribution: CentOS, RHEL, HP-UX, OS X
Posts: 567
Rep:
|
grep searches the contents of a file. Try typing man grep
Quote:
NAME
grep, egrep, fgrep, rgrep - print lines matching a pattern
|
|
|
|
01-30-2010, 06:24 AM
|
#5
|
Member
Registered: Sep 2006
Location: USA - NYC
Distribution: Whatever icon you see!
Posts: 642
Rep:
|
There is a program called Ack and it's design to do fast searches on large content files.
I heard about this program on http://fosscasts.com/screencasts
Scroll down to episode #15 Power Searching with Ack and and watch the video tutorial on its usages.
-Cheers
Last edited by dv502; 01-30-2010 at 06:30 AM.
|
|
|
All times are GMT -5. The time now is 03:02 PM.
|
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
|
|