1

で異なるFirefoxプロファイルを開始することが可能ですfirefox -P <profile-name> -no-remote

しかし、Linux で複数のプロファイルを同時にバッチ ファイルで開始したい場合、最初のプロファイルのみが開始され、前のプロファイルが終了するまで後続のプロファイルが開始されません。

現時点では、このバッチ スクリプトで失敗しています。

#! /bin/bash

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

基本的にprofile 1は問題なく起動しますが、 profile 2Firefox を最初に終了するまで起動しません。次のコマンドは、前のコマンドが終了するまで実行されません。

Windows では、このバット ファイルを使用して複数の 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 ではこれを達成する方法がわかりません。

4

2 に答える 2

0

これは、私がインターネットを検索したときに私を助けたものです

@echo off

start firefox.exe -P Profile1 -no-remote
start firefox.exe -P Profile2 -no-remote
start firefox.exe -P Profile3 -no-remote
于 2014-08-12T10:15:13.240 に答える