2017-04-08 232 views
0

如果我去cd /Applications/Firefox.app/Contents/MacOS然後運行./firefox -new-window http://google.com它會打開一個新版本的firefox,所以我必須同時打開,這不是我想要的,我想要它在開放的Firefox中。然後我嘗試使用open它可以打開新標籤,但我無法打開新窗口。如果我運行open -a firefox -new-window http://google.com它提供了一個錯誤,即新窗口不是現有參數。 所以然後我試着open -a firefox --args -new-window http://google.com,但沒有任何反應,它只是將應用程序的焦點轉移到Firefox。如果我運行open -a firefox --args http://google.com 什麼也沒有發生。當open -a firefox --args -url http://google.com不起作用。 資源述略我已經看過 https://developer.mozilla.org/en-US/docs/Mozilla/Command_Line_Options https://superuser.com/questions/277565/start-firefox-from-terminal-on-mac-os-x-snow-leopard如何在mac上用終端在firefox中打開新窗口

回答

-1

也許這可能對您有用:

open -n /Applications/Firefox.app 

-n選項允許在新窗口打開

可能你得到一個錯誤類似這個: 「Firefox的副本已經打開,一次只能打開一份Firefox的副本」

在這種情況下,需要刪除的文件.parentlock,你可以找到它:

cd ~/Library/Application\ Support/Firefox/Profiles 
ls -l 
cd <your profile>.default 
rm -rf .parentlock 

,然後再試一次:open -n /Applications/Firefox.app

+1

後來我得到一個[錯誤](HTTP:// imgur .com/Pqd5JpS) –

+0

@ J.Eng檢查更新,我希望這可以幫助你 – elmigue017

相關問題