Re: What is the command for Internet Explorer?
- Posted by Matt Lewis <matthewwalkerlewis at gmail.com> Jul 29, 2005
- 453 views
Jerry Story wrote: > > For Linux I have: > > }}} <eucode> > prog = -- mozilla or nautilus or whatever > system(prog & " \"www.google.com/search -- etc. > <font color="#330033"></eucode> {{{ </font> > > This works for Linux. It searches a string on Google. > > The question is: > How to do that on Windows? > I seem to be unable to find the command for Internet Explorer. Even better, actually, you can just do:
system( "start www.google.com/search", -2 )
...and it will use the user's default browser. Matt Lewis