如果我去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中打開新窗口
0
A
回答
-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. 無法在mac終端上打開別名以在新窗口中打開emacs
- 2. 如何在Mac OS X上自動打開終端窗口
- 3. 如何在Mac上打開端口80?
- 4. 如何獲取MinTTY(Cygwin終端)在新窗口中打開gvim?
- 5. 如何讓MinTTY(Cygwin終端)在新窗口中打開Emacs?
- 6. Mac - 在終端中列出打開的窗口
- 7. 在新的終端窗口中打印
- 8. 如何從mac終端打開一個窗口
- 9. 如何在Mac上打開VS代碼打開窗口導航
- 10. 如何使用fork()打開一個新的終端窗口?
- 11. 如何在php中打開終端窗口並執行命令?
- 12. 如何在php中打開終端窗口
- 13. 在python上的macplotlib在mac上打開一個新窗口
- 14. 使用Java打開終端窗口
- 15. 在終端mac中打開mamp mysql
- 16. 如何使終端窗口在mac上的後臺運行
- 17. 如何在新窗口中打開textarea?
- 18. 如何在C中打開新窗口#
- 19. 如何打開的窗口上的git終端
- 20. 在Mac上使用Selenium WebDriver在Firefox中打開新選項卡
- 21. .bash_login文件未在新的終端窗口中加載,或者在關閉終端並重新打開後
- 22. 如何在firefox中使用vimperator打開下載窗口
- 23. 如何在Mac 10.7.5上打開端口443?
- 24. 如何打開新窗口
- 25. 如何打開新終端和新的終端使用python
- 26. 如何在當前窗口中打開IDEA 11新窗口
- 27. 如何在mac 10.4中從終端打開SMB共享?
- 28. 在python中打開新窗口(如vim)
- 29. 在新窗口中打開窗體
- 30. 在同一窗口中打開終端(Ubuntu)
後來我得到一個[錯誤](HTTP:// imgur .com/Pqd5JpS) –
@ J.Eng檢查更新,我希望這可以幫助你 – elmigue017