LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   Find hundreds of file on many directory (https://www.linuxquestions.org/questions/programming-9/find-hundreds-of-file-on-many-directory-4175430226/)

akeka 10-03-2012 02:08 AM

Find hundreds of file on many directory
 
Hi,

I want to search hundreds of files on many directory

Is there any way that I can do this on single command ?

Thanks

pan64 10-03-2012 02:13 AM

what is the goal? have you tried ls -lR or the command: find ?

Didier Spaier 10-03-2012 02:13 AM

The "find" command is the usual candidate for that.

Please tell us some more about your search criteria and the scope of the search if you need a more customized answer.

akeka 10-03-2012 02:17 AM

Hi all,

thanks for the reply

The goal is simple, there's a bunch (hundreds) of files that I need to search on 9 path

I know I can use find with -name file1 -o -name file2

I can afford it if it's only less than 5 files, but hundreds ?

Maybe some combination of find, awk, xargs or something can help me, but I don't know how :)

Thanks

pan64 10-03-2012 02:22 AM

I still do not understand: do you have a list of filenames and you want to locate them, or ????

akeka 10-03-2012 02:33 AM

Quote:

Originally Posted by pan64 (Post 4795739)
I still do not understand: do you have a list of filenames and you want to locate them, or ????

Yes

Maybe I can explain more

Let say I have file list_of_files.txt which the content are all files that I need to search

Quote:

file1
123
234fnk
dseouo
.
.
.
The files doesn't have similar pattern, completely random

Thanks

Didier Spaier 10-03-2012 02:37 AM

Code:

for i in $(cat list_of_files.txt); do locate $i; done
I assume that your locate database is up to date, else run "updatedb" first.

akeka 10-03-2012 02:42 AM

Quote:

Originally Posted by Didier Spaier (Post 4795750)
Code:

for i in $(cat list_of_files.txt); do locate $i; done
I assume that your locate database is up to date, else run "updatedb" first.

Hi,

Thank you for the reply

How do I define the path to be search ?

pan64 10-03-2012 02:49 AM

locate has a database and will search inside. Therefore if this database is not uptodate it will not find those files. (you can scan your environment and collect info using updatedb). If you want to look for special directories you need to grep the result.

SecretCode 10-03-2012 03:38 AM

locate will be efficient because it will search only its own database, not the file system

But if you need other or more limited directories to be searched, you could do it directly - but if you are searching 1000s of subdirectories you may want to think about a depth-first versus breadth-first approach - by depth-first I mean search for one of the possible file names in all directories, then the next:

Code:

for fn in $(cat list_of_files.txt); do find /dir1 /dir2 /dir3 -name $fn; done
or ("breadth-first") you may want to search for all possible file names in the top directory, then in the next, and so on:

Code:

find /dir1 /dir2 /dir3 -type d -exec bash -c 'for fn in $(cat list_of_files.txt); do find "{}" -maxdepth 1 -name "$fn"; done' \;
The second version looks more complex but may be more efficient as the file name matching search is only done once in each directory (and the directory tree is only walked once).

That said, if you're only checking the name, it should be fast enough anyway as find won't have to stat anything.

(In the above /dir1 /dir2 /dir3 is the list of directories you want to search in, and I assume like Didier that you've got a list_of_files.txt. If some of the possible file names contain spaces, they'll need to be quoted.)

NevemTeve 10-03-2012 05:30 AM

Note:
Code:

never do this: for file in $(cat filelist); do ... done
instead:      cat filelist | while read file; do ... done
even better:  while read file; do ... done <filelist

Reasons:
1. 'filelist' might be large
2. filenames might contain spaces

H_TeXMeX_H 10-03-2012 12:19 PM

Well, honestly, I would use find and then grep.

Code:

bash-4.2$ find /usr -type f > usr.txt
bash-4.2$ cat grepfile.txt
/usr/local/bin/geany$
/usr/local/bin/7z$
bash-4.2$ grep -f grepfile.txt usr.txt
/usr/local/bin/7z
/usr/local/bin/geany

You can of course use regex in the grep file.

dugan 10-03-2012 12:40 PM

Do an updatedb once, and then run locate once for each file in the list.

EDIT: In other words, what Didier Spaier said. You don't need to "define the path to be searched" (and this should be apparent if you know how updatedb and locate work).

SecretCode 10-03-2012 04:57 PM

Quote:

Originally Posted by dugan (Post 4796231)
(and this should be apparent if you know how updatedb and locate work)

Which is that, as controlled by /etc/updatedb.conf, they search most of the standard paths - which may return many false positives, depending on the kind of names involved - but do not search all paths. In particular, a sensible administrator will have configured them not to search large removable or network drives.

So it's apparent, if you know how updatedb and locate work, that you might need to define the set of paths to be searched.

ip_address 10-03-2012 09:27 PM

you can also try this ..

Code:

while read line; do echo "Finding file $line .."; find / -name "$line" 2>/dev/null; done < list_of_files.txt


All times are GMT -5. The time now is 09:06 AM.