Running OS X Apps
From Superk
OS X does things a little weird when it comes to applications. It uses a method of combining all the bits necessary for running the application (ie, special libraries, configuration files, etc.) into one specially structured directory.
To run an application directly from the command line, follow one of the following two methods:
$ open /Applications/MyApp.app
or
$ /Applications/MyApp.app/Contents/MacOS/myapp_binary
