I tried the following code unsuccessfully

find Applications | xargs -0 grep Applications

I also tried the following unsuccessfully

find Applications
link|improve this question
Your first command is nonsense. First, you need to use find -0' and xargs -0' together, not mix-and match. Second, find' prints lines - you don't need xargs'. Third, the grep' is pointless because every filename find' prints will contain "Applications". – Andrew Medico Mar 13 '09 at 1:04
feedback

2 Answers

up vote 2 down vote accepted

Was it something instead like:

mdfind Applications | grep Applications

mdfind is a command line interface to Spotlight. Somehow, I doubt this is what you were looking for.

The following command will find the names of Mac apps you have installed somewhere under /Applications.

find /Applications -type d -name "*.app"

Your question as phrased is pretty hard to help with, since you are not stating what your overall intent is...

link|improve this answer
Thank you! Your commands are excellent :) – Masi Mar 13 '09 at 1:02
Do you know which software Google Desktop use? Perhaps, mdfind? – Masi Mar 13 '09 at 1:07
I think Google Desktop on the Mac does some of its own indicing (independent of Apple's Spotlight) See: desktop.google.com/support/mac/bin/… – popcnt Mar 13 '09 at 2:31
feedback

It's in /Applications.

Try

find /Applications
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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