Re: How can I call Google?
- Posted by Greg Haberek <ghaberek at gmail.com> May 28, 2005
- 453 views
> If I try: > system("start http://www.google.com/",2) > > that doesn't work. > > The error message says it doesn't understand the command "start". That's because 'start' is a Windows command.Try 'exec' instead. http://www.ss64.com/bash/exec.html ss64.com is a wonderful resource for nearly all command-line commands for the major OSes (Windows NT/XP, Linux, OS X, and Oracle 9i). ~Greg