Help for this page
@args = ("command", "arg1", "arg2"); system(@args) == 0 or die "system @args failed: $?";
@args = ("command", "arg1", "arg2"); exec { $args[0] } @args or print STDERR "couldn't exec $args[0]: $!";