Help for this page

Select Code to Download


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