Is it possible to search for a string from all the files on the harddisk?
Linux - NewbieThis 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.
This will probably take a few hours to complete.
Can you just tell us what you want to do? Instead of insisting on a way to achieve your goal, maybe someone else has a better idea on how to achieve it.
No it can't AFAIK but you can easily call grep for each file you find:
Code:
find / -exec grep xhost '{}' \;
However I can't see the advantage of this - it would be considerably slower than just doing a grep -R because every time a file is found a new grep process is started. However if you only wanted to search through some files on the disk, eg. all files modified after a certain date, then this would be the way to go.
That would be absolutely useless because grep would be called with one parameter only and thus not output the filename. So you'd have lots of lines with xhost somewhere or other but no idea in which file they were found.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.