Find command help


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Find command help
# 1  
Old 03-02-2011
Find command help

All,
I'm reading around and getting confused on how to exclude directories on a find command.

So, what I want is a find command that can find a file with a name and exclude certain directories.

ie

find / -name filename.txt and ignore directory/subdir called mounts and ctshare

Code:
find / -name test.txt \( -name ctshare -o -name mounts \) -prune -o print

It isn't working as expected. Any help?
# 2  
Old 03-02-2011
Code:
dirs=$(find / -type d \( -name ctshare -o -name mounts \) | tr '\n' ' ')  )
find $dirs -name test.txt

build a list of directories, feed that to a second find command.
# 3  
Old 03-02-2011
Similar to the above, but to exclude the directories:
Code:
find / -type d \( ! -name ctshare -a ! -name mounts \) -print | while read DIR
do
        find "${DIR}" -type f -name 'test.txt' -print
done

# 4  
Old 03-02-2011
Quote:
Originally Posted by markdjones82
All,
I'm reading around and getting confused on how to exclude directories on a find command.

So, what I want is a find command that can find a file with a name and exclude certain directories.

ie

find / -name filename.txt and ignore directory/subdir called mounts and ctshare

Code:
find / -name test.txt \( -name ctshare -o -name mounts \) -prune -o print

It isn't working as expected. Any help?
The terms in your find command are slightly out of order, so the logic is incorrect. The terms '-name test.txt' and '( -name ctshare -o -name mounts )' are mutually-exclusive; one of them will always be false. This means that -prune will never be reached (since boolean AND expressions in find short-circuit, just as they do in sh and C), the left-hand side of the -o is always false and for every pathname evaluated by your find command, -print will be executed (assuming the missing - was a typo and not actually missing from your command).

I think the following is what you are going for:
Code:
find / \( -name ctshare -o -name mounts \) -prune -o -name test.txt -print

Regards,
Alister

Last edited by alister; 03-02-2011 at 03:20 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Is it possible to find the seek rate of the find command in Solaris?

Hello, I am running some performance based tests on Solaris, and I was wondering how fast the "seeking" rate of Solaris is, or how fast Solaris can get information about files with the "find" command. Does anyone know what 'find' command I could run to traverse through my system to see the rate... (1 Reply)
Discussion started by: bstring
1 Replies

2. Shell Programming and Scripting

Find multiple string in one file using find command

Hi, I want find multiple string in one file using find coomand. And keeping it in one variable.grep is not working. (5 Replies)
Discussion started by: vivek1489
5 Replies

3. Shell Programming and Scripting

How to use grep & find command to find references to a particular file

Hi all , I'm new to unix I have a checked project , there exists a file called xxx.config . now my task is to find all the files in the checked out project which references to this xxx.config file. how do i use grep or find command . (2 Replies)
Discussion started by: Gangam
2 Replies

4. Shell Programming and Scripting

Find, regular expression, anyway to simplify this find command?

Hello everyone, first post here, trying to learn scripting on my own and this forum as been really helpful so far. I made few little scripts working great but I m facing some problems with RE. I have a bunch of files in many subdirectories called *001.ext *002.ext OR simple *.ext or *01.ext... (7 Replies)
Discussion started by: Sekullos
7 Replies

5. Shell Programming and Scripting

what is the find command to find exact dir from the root

I want to find a dir called STOP from the root.so what is the find command. Thanks & Regards Rajkumar (1 Reply)
Discussion started by: rajkumar_g
1 Replies

6. Linux

Simplified find command to find multiple file types

Hi, I'm using the following command to find the multiple requierd file types and its working fine find . -name "*.pl" -o -name "*.pm" -o -name "*.sql" -o -name "*.so" -o -name "*.sh" -o -name "*.java" -o -name "*.class" -o -name "*.jar" -o -name "*.gz" -o -name "*.Z" -type f Though... (2 Replies)
Discussion started by: vickramshetty
2 Replies

7. Shell Programming and Scripting

find: No match due to find command being argument

I am using csh and getting the error "find: No match." but I cannot figure out why. What I am trying to do is set the find command to a variable and then execute the variable as a command. I ran it through a debugger and it looks like $FIND is getting set but the find command can not actually be... (2 Replies)
Discussion started by: mst3k4l
2 Replies

8. UNIX for Dummies Questions & Answers

how to find a file named vijay in a directory using find command

I need to find whether there is a file named vijay is there or not in folder named "opt" .I tried "ls *|grep vijay" but it showed permission problem. so i need to use find command (6 Replies)
Discussion started by: amirthraj_12
6 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

command find returned bash: /usr/bin/find: Argument list too long

Hello, I create a file touch 1201093003 fichcomp and inside a repertory (which hava a lot of files) I want to list all files created before this file : find *.* \! -maxdepth 1 - newer fichcomp but this command returned bash: /usr/bin/find: Argument list too long but i make a filter all... (1 Reply)
Discussion started by: yacsil
1 Replies
Login or Register to Ask a Question