vote up -1 vote down star

I tried the following code unsuccessfully

find Applications | xargs -0 grep Applications

I also tried the following unsuccessfully

find Applications
flag
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 at 1:04

2 Answers

vote up 2 vote down check

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|flag
Thank you! Your commands are excellent :) – Masi Mar 13 at 1:02
Do you know which software Google Desktop use? Perhaps, mdfind? – Masi Mar 13 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/… – popcnt Mar 13 at 2:31
vote up 2 vote down

It's in /Applications.

Try

find /Applications
link|flag

Your Answer

Get an OpenID
or

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