- or download this
my @args = ("command", "arg1", "arg2");
system(@args) == 0
or die "system @args failed: $?";
- or download this
my @args = qw(Runbatch.exe -j dpsgl -r dpstst);
system(@args) == 0
or die "system @args failed: $?";
- or download this
my @args = ('Runbatch.exe', '-j', 'dpsgl', '-r', 'dpstst');
system(@args) == 0
or die "system @args failed: $?";
- or download this
#!/usr/bin/perl
use strict;
...
'-r',
'dpstst'
];
- or download this
#!/usr/bin/perl
use strict;
...
'-r',
'dpstst'
];