This is what I get when I try to start the executable:

Mac-Pro:MacOS george$ /Applications/Firefox.app/Contents/MacOS/firefox
dyld: Library not loaded: /usr/lib/libsqlite3.dylib
  Referenced from: /System/Library/Frameworks/Security.framework/Versions/A/Security
  Reason: Incompatible library version: Security requires version 9.0.0 or later, but libsqlite3.dylib provides version 1.0.0
/Applications/Firefox.app/Contents/MacOS/run-mozilla.sh: line 131:  9870 Trace/BPT trap          "$prog" ${1+"$@"}

I also tried:

MacOS george$ open -a /Applications/Firefox

FSPathMakeRef(/Applications/Firefox) failed with error -43.

Is there a particular way to start the application from the command line?

link|improve this question
feedback

migrated from stackoverflow.com May 1 '11 at 0:16

This question came from our site for professional and enthusiast programmers.

2 Answers

The problem with your second attempt is that the path includes the .app extenstion.

Try using either

open -a /Applications/Firefox.app

or

open /Applications/Firefox.app
link|improve this answer
Correct. I verified. The "old hit tab key to autocomplete trick" fixes that one for me. – Grady Player Apr 29 '11 at 21:48
2  
open -a Firefox works just as well (unless you have multiple instances of the same program installed). – Daniel Beck May 1 '11 at 0:35
feedback

You want to run /Applications/Firefox.app/Contents/MacOS/firefox-bin

link|improve this answer
feedback

Your Answer

 
or
required, but never shown