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