从命令行打开多个firefox选项卡


20

我正在尝试firefox从命令行中的两个选项卡打开,并使用两个单独的网址。到目前为止,我还没有运气。

firefox -new-tab https://www.evernote.com/Home.action -new-tab http://www.gmail.com

有人可以指出我正确的方向吗?

Answers:


27

哎呀。我才找到答案。您需要-url在每个`-new-tab'之后添加一个。

firefox -new-tab -url https://www.evernote.com/Home.action -new-tab -url http://www.gmail.com

现在可以了。希望这可以帮助到别人。


凉。这在Chrome中也非常有用。
奥古斯托

5

创建一个包含URL列表的文件,称为url.txt

http://www.url1.xxx
http://www.url2.xxx
http://www.url3.xxx

Firefox使用new-tab命令,因此您可以将文件中的URL传递给浏览器,如下所示:

xargs -a url.txt firefox -new-tab "$line"

@Maythus很棒
alhelal '16

5

更新:现在您无需添加-url简单的编写firefox,然后添加以空格分隔的Web url名称。

firefox mail.google.com askubuntu.com stackoverflow.com

这是一个很好的解决方案。就个人而言,我在启动时使用CTRL + R来调用该行,并在命令的末尾使用&来将firefox会话与终端分离,这只是一个建议。
somethis
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.