我有两个在单独的配置文件下运行的 Firefox 实例:
$ firefox -P default &
...
$ firefox -no-remote -P second &
Run Code Online (Sandbox Code Playgroud)
现在我可以从命令行打开一个新选项卡:
$ firefox -new-tab http://unix.stackexchange.com
Run Code Online (Sandbox Code Playgroud)
但是如何在第二个配置文件中打开一个新选项卡?
这个:
$ firefox -P second -new-tab http://unix.stackexchange.com
Run Code Online (Sandbox Code Playgroud)
在默认配置文件中打开一个选项卡,同时:
$ firefox -no-remote -P second -new-tab http://unix.stackexchange.com
Run Code Online (Sandbox Code Playgroud)
抱怨已经有一个实例在该配置文件下运行。
firefox ×1