Problem with system()

Chris Faylor cgf@cygnus.com
Wed Jul 26 13:01:00 GMT 2000


On Wed, Jul 26, 2000 at 03:56:42PM -0400, Glenn.Davis@predictive.com wrote:
>Hi,
>I am trying to run a simple program that just uses the system() call, but 
>I can't get it to work.
>the call I am using is system("dir");
>
>Am I doing something wrong?

"dir" is not a cygwin command.  It's a function of your command shell.

You probably want to do one of:

- system ("ls");		/* The cygwin way */

- system ("command /c dir");	/* Windows 95 */

- system ("cmd /c dir");	/* Windows NT */

cgf

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com



More information about the Cygwin mailing list