Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a file /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home

I am trying to find if I have the *.jdk anywhere else on my hard drive. So I do a search command:

find . -name "*.jdk"

But it doesn't find anything. Not even the one I know that I have. How come?

share|improve this question

4 Answers

up vote 5 down vote accepted

find . only looks in your current directory. If you have permissions to look for files in other directories (root access) then you can use the following to find your file -

find / -type f -name "*.jdk"

If you are getting tons of permission denied messages then you can suppress that by doing

find / -type f -name "*.jdk" 2> /dev/null
share|improve this answer
You right. I wanted to look in all directories, but was looking only in the current. Once I tried your command, I start getting permission denied messages. How do I modify my permission for this kind of searches? – Prostak Dec 22 '11 at 17:53
1  
You can't modify the permission, it depends on your user privileges. What you can do is suppress those messages but find will not be able to look into those directories. – Jaypal Dec 22 '11 at 17:55
1  
You can either ignore errors by appending 2>/dev/null to the command-line, or try running it with a sudo prefix – BRPocock Dec 22 '11 at 17:55
1  
@Prostak, this will only show regular files, not directories. -type f is to filter out symbolic links, directories, devices, and such. – BRPocock Dec 22 '11 at 18:19
1  
Yep that's true. -type f is to limit your search to regular files. If you want it to search for only directories with certain name then do -type d, for searching symbolic links type -l etc. – Jaypal Dec 22 '11 at 18:23
show 5 more comments

a/

find . means, "find (starting in the current directory)." If you want to search the whole system, use find /; to search under /System/Library, use find /System/Library, etc.

b/

It's safer to use single quotes around wildcards. If there are no files named *.jdk in the working directory when you run this, then find will get a command-line of:

    find . -name *.jdk

If, however, you happen to have files junk.jdk and foo.jdk in the current directory when you run it, find will instead be started with:

    find . -name junk.jdk foo.jdk

… which will (since there are two) confuse it, and cause it to error out. If you then delete foo.jdk and do the exact same thing again, you'd have

    find . -name junk.jdk

…which would never find a file named (e.g.) 1.6.0.jdk.

What you probably want in this context, is

    find /System -name '*.jdk'

…or, you can "escape" the * as:

    find /System -name \*.jdk
share|improve this answer

Probably your JDKs are uppercase and/or the version of find available on OS X doesn't default to -print if no action is specified; try:

find . -iname "*.jdk" -print

(-iname is like -name but performs a case-insensitive match; -print says to find to print out the results)

--- EDIT ---

As noted by @Jaypal, obviously find . ... looks only into the current directory (and subdirectories), if you want to search the hole drive you have to specify / as search path.

share|improve this answer

The '.' you are using is the current directory. If you're starting in your home dir, it will probably miss the JDK files.

Worst case search is to start from root

 find / -name '*.jdk' -o -name '*.JDK' -print

Otherwise replace '/' with some path you are certain should be parent to you JDK files.

I hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.