Help for this page

Select Code to Download


  1. or download this
        The Win32::Process module is always used to spawn background
        processes on the Win32 platform.  This module always takes a
    ...
    
        Finally, the argument array is placed back into a single
        string and passed to Win32::Process::Create.</i></blockquote>
    
  2. or download this
    if( $^O =~ 'mswin' ) {
        my $pid = system 1, $command;
    ...
        ##whatever is appropriate on *nix.
    }