Inicie o Firefox a partir do Terminal no Mac OS X (Snow Leopard)

6

Isso é o que eu recebo quando tento iniciar o executável:

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+"$@"}

Eu também tentei:

MacOS george$ open -a /Applications/Firefox

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

Existe uma maneira particular de iniciar o aplicativo a partir da linha de comando?

    
por Black 29.04.2011 / 17:06

3 respostas

12

O problema com a sua segunda tentativa é que o seu caminho não inclui a .app extensão.

Tente usar

open -a /Applications/Firefox.app

ou

open /Applications/Firefox.app
    
por 29.04.2011 / 20:54
9

Estes exemplos abrem o Firefox, abrem um site específico ou pesquisam o diretório pessoal do usuário.

open -a firefox
open -a firefox -g http://news.google.com
open -a firefox -g $HOME
    
por 19.09.2012 / 04:54
2

Você deseja executar /Applications/Firefox.app/Contents/MacOS/firefox-bin

    
por 29.04.2011 / 20:49

Tags