I'm looking for one command that find path and open all of .app with only change app name in Terminal.
I tried :
mdfind "calendar.app" "kind:app" | grep -v '/Users/' | xargs open
Work well with calendar, safari, calculator --> find and open .app
But when i tried .app with space, it doesn't work:
mdfind "Google Chrome.app" "kind:app" | grep -v '/Users/' | xargs open
The files /Applications/Google and /Users/Simon/Chrome.app do not exist.
I tried with -0, \ but not work
Can u help me?