Help in Find command filter test files


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Help in Find command filter test files
# 1  
Old 08-22-2008
Help in Find command filter test files

Hi,
I want to get all the files under a directory with find command and filter the filenames with "test" . Could you please hep me how can I build this commad

Operating System : Solaris 8
# 2  
Old 08-22-2008
????

cd <dir>;
find . -print|grep test
# 3  
Old 08-22-2008
You can also use:

find . -name test -print.

You can use regular expressions with it as well. Example of a wildcard search:

find . -name *test* -print
# 4  
Old 08-22-2008
H Mariognarly & Vbe
Got it, Thanks for your response.
# 5  
Old 08-22-2008
Actually, you should quote the -name pattern if it contains wildcards, otherwise it'll break if you have more than one match:

$ ls
345test567 768test234
$ find . -name *test* -print
find: paths must precede expression
Usage: find [-H] [-L] [-P] [path...] [expression]
$ find . -name "*test*" -print
./768test234
./345test567
$
 
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 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

2. 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

3. Shell Programming and Scripting

Find patterns and filter the text

I need to filter the text in between two patterns and output that to a different file. Please help me how to do it. Ex: ............. <some random text> ............. Pattern_1 <Few lines that need to be output to different file> Pattern_2 ................ ............... <more text in... (4 Replies)
Discussion started by: metturr
4 Replies

4. 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

5. Shell Programming and Scripting

find command to filter specific type of files older than certain date.

Hi I need to find the list of files in a directory and to do some specific operations based on the type of files. suppose in a directory am having .dat , .log, .err, .rej file types. i need to filter out .dat and .log only which are older than six months. i used the below query but the... (2 Replies)
Discussion started by: msathees
2 Replies

6. UNIX for Dummies Questions & Answers

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 (11 Replies)
Discussion started by: satimis
11 Replies

7. 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

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. 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

10. Shell Programming and Scripting

Renameing files with the find command

Hi, I am attempting to rename files in a directory tree, using the find command: find . -name "file-src*" -exec mv {} file-tgt \; however, this only moves the file to the current dir: I have also tried: mv 'find . -name file-src' file-tar find . -name "file-src*" -exec mv {file-tgt} \;... (6 Replies)
Discussion started by: Breen
6 Replies
Login or Register to Ask a Question