我需要帮助来完成应该能够完成的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。 我觉得很有趣,没有找到任何解决方案来满足互联网上的这种要求。让我知道你的建议。 谢谢。