command to find files


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers command to find files
# 1  
Old 04-16-2011
command to find files

Hi folks,

What command/commands I have to run to find the files including their folder/subfolder which contain word-a, word-b etc.

e.g. I expect to find the names of the files including their folders which contain "domain", "subdomain/sub domain", "free domain". etc.

TIA

B.R.
satimis
# 2  
Old 04-16-2011
Code:
 ls -R | grep -E 'word-[ab]'

?
# 3  
Old 04-16-2011
Quote:
Originally Posted by ctsgnb
Code:
 ls -R | grep -E 'word-[ab]'

?
Hi,

Whether run;
Code:
$ ls -R | grep -E 'domain subdomain sub domain free domain' /path/to/database

TIA

B.R.
satimis
# 4  
Old 04-16-2011
Quote:
Originally Posted by satimis
I expect to find the names of the files including their folders which contain "domain", "subdomain/sub domain", "free domain". etc.
This should work,
Code:
find . -path "*domain*" 2> /dev/null

Will find files that do have 'domain' in the filename, and will find files that don't have 'domain' in the filename, but exist in a directory with 'domain' in the dirname.

You shouldn't need to search for "subdomain/sub domain", "free domain". etc. because the original search for 'domain' will find them all.
# 5  
Old 04-17-2011
In case the previous post is not right, my interpretation is:
Code:
find . -name "*domain*" -print

# 6  
Old 04-17-2011
Quote:
Originally Posted by methyl
In case the previous post is not right, my interpretation is:
Code:
find . -name "*domain*" -print

Hi,

I expect finding the files having "domain" in the content, not the filename. Thanks

B.R.
satimis
# 7  
Old 04-17-2011
Really needs an example.

This is what I think you mean (find the names of files which contain the string "domain" in the content).
Code:
find . -type f -exec grep -l "domain" {} \;

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find command when there exist many files

I want to run find and wondering if it struggles when there are many files. I have tried and does not seem to complain. Is this correct? (8 Replies)
Discussion started by: kristinu
8 Replies

2. Shell Programming and Scripting

Find command to find a word from list of files

I need to find a word '% Retail by State' in the folder /usr/sas/reports/RetailSalesTaxallocation. When I tried like below, -bash-4.1$ cd /usr/sas/reports/RetailSalesTaxallocation -bash-4.1$ find ./ -name % Retail by State find: paths must precede expression: Retail Usage: find ... (10 Replies)
Discussion started by: Ram Kumar_BE
10 Replies

3. Shell Programming and Scripting

Find command to delete the files

Hi All, I've created 2 files touch -t 201309101234 aa10 touch -t 201309111234 aa11 Exact 60 days before from today date is SEPT 12th . As per the following command as i gave +60 means the files which were created before sept12th should be deleted find /etc/logs/*aa* -type f -atime +60... (5 Replies)
Discussion started by: smile689
5 Replies

4. UNIX for Dummies Questions & Answers

Find command to delete old files

Hi, I want to delete all the log files that was created on year 2008. My command is not working. Any idea? find . -name '*.log' -mtime 1460 -exec ls -lt {} \; Thank you. (2 Replies)
Discussion started by: samnyc
2 Replies

5. UNIX for Dummies Questions & Answers

Command to find files

Hi All, Can anyone give me the command to copy files from 03-Mar-2013 to 07-Mar-2013 in folder. there are nearly 40+ thousand files in directory , so I just need files from Mar 3rd to Mar 7th and copy them to a location . Need quick help pls (2 Replies)
Discussion started by: rockingvj
2 Replies

6. Shell Programming and Scripting

what is the find to command to find the files created last 30 days

what is the find to command to find the files created last 30 days (5 Replies)
Discussion started by: rajkumar_g
5 Replies

7. UNIX for Dummies Questions & Answers

find command -- listing files twice

I noticed the other day that after i used the find command to search for some files, the computer listed them twice -- first with just the names of the files (meaning ./(then the individual file names), then with the directory name, followed by the file names (./directory name/file name). I was... (2 Replies)
Discussion started by: Straitsfan
2 Replies

8. Shell Programming and Scripting

Deleting files using find command

I want to find the files and delete all the files except the last file. I am using find command , I am sending the find output to a file and getting all the lines except the last one and sending it to the remove command . This is not working. can anyone help me out to do it in the find command... (8 Replies)
Discussion started by: deepaklanka
8 Replies

9. UNIX for Dummies Questions & Answers

command to find the files under particular owner

Hi, I need a command to find a files under particular owner ?All the files in the system for the particular user id is the owner? Please help me on this? (2 Replies)
Discussion started by: jayaramanit
2 Replies

10. Shell Programming and Scripting

Little bit weired : Find files in UNIX w/o using find or where command

Yes , I have to find a file in unix without using any find or where commands.Any pointers for the same would be very helpful as i am beginner in shell scritping and need a solution for the same. Thanks in advance. Regards Jatin Jain (10 Replies)
Discussion started by: jatin.jain
10 Replies
Login or Register to Ask a Question