in reply to Re: system() and use POSIX on cygwin
in thread system() and use POSIX on cygwin

either of
use POSIX; system('whatever');
or
use POSIX; fork();
will do it.

Replies are listed 'Best First'.
Re: Re: Re: system() and use POSIX on cygwin
by ysth (Canon) on Feb 10, 2004 at 17:01 UTC
    perl -we'use POSIX; system "sleep 10000"'
    works for me; does it for you? What version of cygwin? Did you build perl yourself or is this the cygwin binary? If built yourself, what's perl -V:config_args or what other changes did you make?

    Can anyone else with cygwin on win98 try the above use posix/sleep?