Run Safari from command line with URL parameter

4

2

I'm trying to open Safari (on OS X 10.8) from the terminal by executing the following:

open -a /Applications/Safari --args "http://www.example.com"

Safari opens and tries to navigate to the url:

file:///http:/www.example.com

Is there a way to get Safari to open up the browser at the specified url?

Note: I can't do open http://www.example.com because I can't be guaranteed that the Safari is the default browser. (And before I'm asked why I'm not using the default browser - I'm doing browser specific test automation.)

rein

Posted 2012-08-08T20:53:57.623

Reputation: 143

Answers

8

It would seem the answer is:

open -a safari http://www.example.com

According to the man page for open(1), open -a <applicationName file> opens a given file with a given application. Therefore, this seems like the most appropiate syntax.

This forum thread and this trac page for a multi platform file manager explain more.

Justin Dearing

Posted 2012-08-08T20:53:57.623

Reputation: 2 704