I tried the following code unsuccessfully
find Applications | xargs -0 grep Applications
I also tried the following unsuccessfully
find Applications
|
feedback
|
|
Was it something instead like: mdfind Applications | grep Applications
The following command will find the names of Mac apps you have installed somewhere under 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... | |||||||
feedback
|
find -0' andxargs -0' together, not mix-and match. Second,find' prints lines - you don't needxargs'. Third, thegrep' is pointless because every filenamefind' prints will contain "Applications". – Andrew Medico Mar 13 '09 at 1:04