How can I cause the browser to open a given URL from Tcl/Tk on Linux?
I'm using this proc on Windows, but I don't know what to do on Linux.
proc open_url {url} {
eval exec [auto_execok start] $url
}
#example call:
open_url http://example.com
How can I cause the browser to open a given URL from Tcl/Tk on Linux?
I'm using this proc on Windows, but I don't know what to do on Linux.
proc open_url {url} {
eval exec [auto_execok start] $url
}
#example call:
open_url http://example.com