我知道只要Firefox选择了“应该打开新页面 - 新选项卡”,下面的代码就会在新选项卡中打开指定的URL到最后选择的firefox窗口。
firefox '<url here>'
效果很好。但是,要打开许多选项卡,用户需要将计算机保留为所有打开状态。
是否可以(在bash中):
A)启动一个新的Firefox窗口,打开该窗口中选项卡中的所有后续页面 和 B)让用户与其他打开的firefox窗口进行交互,而剩下的标签继续加载到新启动的firefox窗口中?
谢谢!
答案 0 :(得分:2)
我认为以下内容涉及您要求的部分(A):
firefox google.com &
firefox -new-tab yahoo.com &
firefox -new-tab bing.com &
关于(B),如果可以接受用户现有的配置文件设置,可能使用-P
选项加载其他内容:
firefox -no-remote -P “<path-to-other-profile>” google.com &
答案 1 :(得分:0)
这对我来说很好:
firefox http://google.com/ http://yahoo.com/