在具有指定URL的终端的INCOGNITO模式下在CHROME中打开一个新窗口


1

我需要帮助来完成应该能够完成的bash脚本

  • 在Chrome(或镀铬金丝雀)中打开新窗口(非标签)
  • 打开每个新窗口 INCOGNITO 模式
  • 打开指定的 网址 在脚本中

我的脚本如下:

# Open up the urls in Canary
# but in NEW_TABS not in NEW_WINDOWS
# NOT in INCOGNITO Mode either
open -a "Google Chrome Canary" http://example1.com --args --incognito
open -a "Google Chrome Canary" http://example2.com --args --incognito
open -a "Google Chrome Canary" http://example3.com --args --incognito
open -a "Google Chrome Canary" http://example4.com --args --incognito

# New incognito tabs open up but aren't opening up the urls
open -na "Google Chrome Canary" http://example1.com --args --incognito
open -na "Google Chrome Canary" http://example2.com --args --incognito

我在OSX上使用Iterm。 我觉得很有趣,没有找到任何解决方案来满足互联网上的这种要求。让我知道你的建议。 谢谢。

Answers:


0

试试这个

open -na "Google Chrome" --args -incognito example.com

如果您的用例是打开链接,则此方法有效。

对于我的情况,我试图打开一个HTML文件 index.html 但我觉得它是自动加上前缀的 http:// 所以它打开了文件 http://index.hml 代替。希望上面对你有帮助。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.