Possible Duplicate:
Visit URL in running Firefox instance from command line in OS X

I am running this command in Terminal.app

$ /Applications/Firefox.app/Contents/MacOS/firefox-bin -new-tab www.ebay.com

In the case when Firefox is already open, i am getting the dialog as

"A copy of Firefox is already open. Only one copy of Firefox can be open at a time."

I am expecting it to open the url in new tab in the already running version of Firefox.

What am I missing here? Any insights?

link|improve this question
feedback

migrated from stackoverflow.com Jun 23 '10 at 14:35

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by Chealion, Doug Harris, quack quixote Jun 23 '10 at 19:11

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

The -no-remote argument tells it specifically not to do that, and to open a new instance. Get rid of that argument and it should work

link|improve this answer
hi Actually "$ /Applications/Firefox.app/Contents/MacOS/firefox-bin -new-tab www.ebay.com" also gives the same result as previous :( – Parimal Das Jun 23 '10 at 14:33
I have removed that from my post. Thanks. – Parimal Das Jun 23 '10 at 14:34
feedback