browseURL {utils} | R Documentation |
Load a given URL into a WWW browser.
browseURL(url, browser = getOption("browser"))
url |
a non-empty character string giving the URL to be loaded. |
browser |
a non-empty character string giving the name of the
program to be used as hypertext browser. It should be in the PATH,
or a full path specified.
Under Windows NULL is also allowed (and is the default), and
implies that the file association mechanism will be used.
|
## Not run: browseURL("http://www.r-project.org") browseURL("file://c|/R/R-2.4.0/doc/html/index.html", browser="C:/Program Files/Mozilla Firefox/firefox.exe") ## End(Not run)