in reply to Re: Re: Starting a new process (fork?)
in thread Starting a new process (fork?)

As Zoogie points out, you can use "nul" (or even "/dev/nul"). In NT, you can use ">nul" and "2>&1", but you can't use "&".

But you can do any of these:

system(1,"dyana >nul 2>&1"); system("start dyana"); # something with Win32::Process

        - tye (but my friends call me "Tye")