Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Learn More

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

Mac OS: How do I target a specific instance of Firefox from the command line when more than one instance is running?

  • 1 resposta
  • 2 têm este problema
  • 14 visualizações
  • Última resposta de firefox.com14

more options

I use different instance of FF with different profiles as front ends for specific php applications. Sometimes when I launch a new instance via the backend script of a GUI app I've created, even though the command line arguments for the firefox binary specify the url, the instance sometimes fails to open the url and stays at the default home page. I'd like to avoid having to set the target url in the preferences for the FF profile and instead load it from the command line, as I set the url in a config file for my GUI app and don't want to have it set in multiple places.

Obviously I can get the PID of the instance, but then how would I use that (or the firefox binary) to tell that instance to open a specific URL?

Code from the script that launches FF: (included variable are defined previously)

   browserlaunchcmd="$browserdir/Firefox.app/Contents/MacOS/firefox -P $browserprofile -no-remote \"http://$webdomain/\""
   ...
   eval "$browserlaunchcmd"
I use different instance of FF with different profiles as front ends for specific php applications. Sometimes when I launch a new instance via the backend script of a GUI app I've created, even though the command line arguments for the firefox binary specify the url, the instance sometimes fails to open the url and stays at the default home page. I'd like to avoid having to set the target url in the preferences for the FF profile and instead load it from the command line, as I set the url in a config file for my GUI app and don't want to have it set in multiple places. Obviously I can get the PID of the instance, but then how would I use that (or the firefox binary) to tell that instance to open a specific URL? Code from the script that launches FF: (included variable are defined previously) browserlaunchcmd="$browserdir/Firefox.app/Contents/MacOS/firefox -P $browserprofile -no-remote \"http://$webdomain/\"" ... eval "$browserlaunchcmd"

Todas as respostas (1)

more options

I've figured a workaround for the url not loading on launch, but still haven't figured an answer to the targeting question.

The workaround is to echo

   user_pref('browser.startup.homepage', '[STARTUP URL]');

to the file "user.js" in the profile directory prior to issuing the FF launch command (or else check if that file with that line already exists in that folder). Coarse, but it works, and allows the URL to be set via the variable in the App's config file without duplication.

Alterado por firefox.com14 em