Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Find files that contains a word
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo
View previous topic :: View next topic  
Author Message
henning_bravo
Apprentice
Apprentice


Joined: 11 Apr 2007
Posts: 197

PostPosted: Wed Jun 27, 2007 2:15 pm    Post subject: Find files that contains a word Reply with quote

Hello

Can someone please help me with a command that searches through a folders files and saves all filenames that contains the word searching for in a new file.

I tried with something like this, but it doesn't work:
Code:
find . -type f -exec grep -H 'word' {} \; > file.txt
Back to top
View user's profile Send private message
toralf
Developer
Developer


Joined: 01 Feb 2004
Posts: 3925
Location: Hamburg

PostPosted: Wed Jun 27, 2007 2:17 pm    Post subject: Reply with quote

Code:
grep -Hrl word ./
Back to top
View user's profile Send private message
henning_bravo
Apprentice
Apprentice


Joined: 11 Apr 2007
Posts: 197

PostPosted: Wed Jun 27, 2007 2:30 pm    Post subject: Reply with quote

toralf wrote:
Code:
grep -Hrl word ./

Perfect!

Since you are so good at that you will be given the honor to correct one I think is right. :wink:
Is the command
Code:
find / -type f -atime -1

correct if I want to get a list of all files that has been accessed less than two days ago?
Back to top
View user's profile Send private message
toralf
Developer
Developer


Joined: 01 Feb 2004
Posts: 3925
Location: Hamburg

PostPosted: Wed Jun 27, 2007 2:58 pm    Post subject: Reply with quote

If accessed means changed, it should be well.
Back to top
View user's profile Send private message
henning_bravo
Apprentice
Apprentice


Joined: 11 Apr 2007
Posts: 197

PostPosted: Wed Jun 27, 2007 3:01 pm    Post subject: Reply with quote

toralf wrote:
If accessed means changed, it should be well.

Thanks! :D
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum