correct usage of find's -prune option


 
Thread Tools Search this Thread
Operating Systems Solaris correct usage of find's -prune option
# 1  
Old 04-29-2009
correct usage of find's -prune option

I know one of the more seasoned veterans probably opened this thread looking for their chance to refer me to the site's search feature and let me tell you.

I'VE LOOKED!!!! And I didn't find anything helpful...


So, I've got a windows background and I'm fond of its search feature which comes with the option to specify a single directory in its search path. Or I like being able to sort a directory in Windows and view the directories first, without having to sift through massive amounts of other files betwixt.

I've tried to duplicate this sort of application with unix's find command, using the -prune option, but I have been unsuccessful.

Can anybody provide insight into this matter for me?

usually, I'm working in the directory where I want to search and want to restrict the search to that location. e.g.

# find . -type d -prune
.


That's it--it usually returns just the current working directory as a result. I know I'm wrong, VERY WRONG. So skip the courtesy of telling me and just correct/inform me proper. Smilie A thousand thanks in advance if you can correctly inform me.

your friendly neighborhood programmar
# 2  
Old 04-29-2009
Are you sure you need find? ls (or even printf) may be suffucient:

Code:
ls <dir>

# 3  
Old 04-29-2009
Don't worry, I think everyone stumbles on this "bug" sooner or later.
-prune tells find to only look at the directories specified at the command line, in your case your current working directory, and nothing else. If you run it as
Code:
# find ./* -type -d -prune

it will check the contents of the current directory (and nothing below)
# 4  
Old 04-29-2009
I see,
so the original poster wants (eventually) to list directories only.
And again, I suppose that find is not needed:

Code:
ls -d */

or (if connected to terminal):

Code:
ls -1d */

Or even without external commands (assuming builtin printf):

Code:
printf '%s\n' */

Otherwise,
if find is really needed, you may try something like this:

Code:
find . ! -name . -prune -type d

And if you have a recent find implementation (GNU, not sure for BSD?):

Code:
find -maxdepth 1 -type d


Last edited by radoulov; 04-29-2009 at 10:51 AM..
# 5  
Old 04-29-2009
Oh my lawd!!

Quote:
Originally Posted by pludi
Don't worry, I think everyone stumbles on this "bug" sooner or later.
-prune tells find to only look at the directories specified at the command line, in your case your current working directory, and nothing else. If you run it as
Code:
# find ./* -type -d -prune

it will check the contents of the current directory (and nothing below)

So I fell out of my chair when I realized how ./* made the world of difference. By the way, this performed exactly what I originally intended. Pludi, YOU'RE THE MAN!! Anybody who tells you otherwise probably has parents who are brother and sister. Smilie

I do have a question for you though...

I understand that sh evaluates ./* to mean everything below the current working directory, but I would naturally assume (.) to include the same. So where did I go wrong? Can you understand the error in my comprehension? Iunno--I guess that's just the way I understood the man page.

Radoulov,

you gave some very good solutions too, namely the option negating anything named . (! -name .). Thanks!

I don't have maxdepth option, I have whichever version of find ships with Solaris 9.x
# 6  
Old 04-29-2009
No. A singular point always means exactly the current directory, just like '..' always means the parent directory, and never the content of it. It's the same as if you'd specify the absolute path: find sees the path, recognizes it as a directory (matching your criteria), knows that it shouldn't descend and moves on to the next path on the command line (none).

If it helps: think of directories as files, where the contents are other files (it's more or less like this for the filesystem). When you want to search the "content" you'll have to state that.
# 7  
Old 04-29-2009
you're the man!

Pludi,

That was educating. Particularly when you underscored that find recognized the current working directory as a directory itself and pruned itself.

So comparing . (cwd) vs ./* (contents of current working directory) really drives the point home when you see the difference in results. I guess I thought the contents of the path specified was implied, but now I know better!

Awesome, thanks for squaring me away.Smilie

P3@cE!
This User Gave Thanks to ProGrammar For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Prune Option for Find Command on AIX

I need to delete all files from the working directory and its sub directories using the find command, for that I am using -prune option but some how I am having a syntax issue. I have tried the below, please help me correct the syntax find . -name \* -type f -exec rm -f {} \; >> Works but... (4 Replies)
Discussion started by: rosebud123
4 Replies

2. Solaris

Usage of -prune and -name in find

I am into cd /home/work/amey/history-*/ Under amey I have directories history, history-1, history-2 and under history-2 I have got 2 files 3 and 2. When I run the find command I get the below o/p. find /home/work/amey/history-*/. -name . -o -prune -type f /home/work/amey/history-1/.... (1 Reply)
Discussion started by: ameyrk
1 Replies

3. UNIX for Dummies Questions & Answers

find with prune option help needed

Hello, I am using ksh93 (/usr/dt/bin/dtksh) on Solaris and am stuck when trying to use find with the -prune option. I need to search a directory (supplied in a variable) for files matching a certain pattern, but ignore any sub-directories. I have tried: find ${full_path_to_dir_to_search}... (9 Replies)
Discussion started by: gary_w
9 Replies

4. UNIX for Dummies Questions & Answers

AIX find command using prune option

Hi, I am trying to find some files in a directory and then remove/list them if they are 30 days old. I also have 2 directories in that directory which I need to skip. Can someone please tell me what is the correct syntax? find /developer/. -name "lost+found" "projects" -prune -o -type f... (2 Replies)
Discussion started by: tkhan9
2 Replies

5. Shell Programming and Scripting

help with find command and prune option

Hi I have a directory say mydir and inside it there are many files and subdirectories and also a directory called lost+found owned by root user I want to print all files directories and subdirectorres from my directory using find command except lost+found If i do find . \( -name... (3 Replies)
Discussion started by: xiamin
3 Replies

6. Shell Programming and Scripting

find with prune option

Hi, I want to list files only from the current dir and its child dir (not from child's child dir). i have the following files, ./ABC/1.log ./ABC/2.log ./ABC/ABC1/A.log ./ABC/ABC1/B.log ./ABC/ABC1/XYZ/A1.log ./ABC/ABC1/XYZ/A2.log Here i want to list only the log file from current... (1 Reply)
Discussion started by: apsprabhu
1 Replies

7. UNIX for Dummies Questions & Answers

help me out with find command , -prune option

Hi , Kindly help me out .:) i want to find only the file t4 in directory t3. i am in dir t . the tree is as follows. if i give, find . o/p is . ./t4 ./t1 ./t1/t2 ./t1/t2/t3 ./t1/t2/t3/t4 ./t1/t2/t4 ./t1/t4 directories are like t/t1/t2/t3 and each directory has file t4. my... (7 Replies)
Discussion started by: bhuvaneshlal
7 Replies

8. Linux

doubt in -prune option

i want to find only the file t4 in directory t3. i am in dir t . the tree is as follows. if i give, find . o/p is . ./t4 ./t1 ./t1/t2 ./t1/t2/t3 ./t1/t2/t3/t4 ./t1/t2/t4 ./t1/t4 directories are like t/t1/t2/t3 and each directory has file t4. my question is , i want to find file... (0 Replies)
Discussion started by: bhuvaneshlal
0 Replies

9. HP-UX

how can I find cpu usage memory usage swap usage and logical volume usage

how can I find cpu usage memory usage swap usage and I want to know CPU usage above X% and contiue Y times and memory usage above X % and contiue Y times my final destination is monitor process logical volume usage above X % and number of Logical voluage above can I not to... (3 Replies)
Discussion started by: alert0919
3 Replies

10. Shell Programming and Scripting

finding files using prune option

Hi All, I am trying to find files in a directory and don't want to search in the sub directories and using the command find . \( ! -name . -prune \) -mtime +1 -name '*.log' and is working fine. But when I am trying with absolute path then is not working like find /home/subodh \( ! -name... (1 Reply)
Discussion started by: subodh.sharma
1 Replies
Login or Register to Ask a Question