gpt4 book ai didi

linux - 在 linux 中使用批处理文件启动多个 firefox 配置文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:29:34 26 4
gpt4 key购买 nike

可以用 firefox -P <profile-name> -no-remote 启动不同的 firefox 配置文件

但是,当我想在 linux 中同时启动多个带有批处理文件的配置文件时,只有第一个配置文件启动,而后续的配置文件只有在前一个配置文件退出后才会启动。

目前我使用这个批处理脚本不成功:

#! /bin/bash

firefox -P "profile 1" -no-remote
firefox -P "profile 2" -no-remote
firefox -P "profile 3" -no-remote

基本上,profile 1开始很好但是 profile 2在我先退出 Firefox 之前不会启动;直到前一个命令退出后,下一个命令才会执行。

在 Windows 中,我已经成功地使用这个 bat 文件同时启动了多个 firefox:

start "" "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -P "profile 1" 
start "" "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -P "profile 2"
start "" "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -P "profile 3"

start 之后的引号帮助实现这一点,在 start 之后没有引号,配置文件不会同时启动,但在 linux 中我不知道如何完成此操作?

最佳答案

您需要通过添加

在后台运行它们
  & 

命令结束

关于linux - 在 linux 中使用批处理文件启动多个 firefox 配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18166849/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com