で異なる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 2
Firefox を最初に終了するまで起動しません。次のコマンドは、前のコマンドが終了するまで実行されません。
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 ではこれを達成する方法がわかりません。