Help for this page

Select Code to Download


  1. or download this
    script.pl arg1, ... argn
    Drive:\path\script.pl arg1, ... argn
    Drive:\path\perl.exe Drive:\path\script.pl arg1, ... argn
    
  2. or download this
    $cmd = "script.pl arg1, ... argn";
    
  3. or download this
    @cmd = ("script.pl", arg1, etc, argn);
    
  4. or download this
    system( $cmd );
    system( @cmd );
    ...
        0,
        CREATE_NEW_CONSOLE,
    ".") || die "Create: $!";
    
  5. or download this
    Win32::Process::Create($process, 
        "Drive:\path\script.pl",
    ...
        0,
        CREATE_NEW_CONSOLE,
    ".") || die "Create: $!";
    
  6. or download this
    '0' is not recognized as an internal or external command
    
  7. or download this
    Create: No such file or directory at scriptname.pl line nn.