Help for this page

Select Code to Download


  1. or download this
    system("ls") or die $!;
    
  2. or download this
    # Works
    $return = system("ls");
    ...
    if ($return != 0) {
        die ($_);
    }
    
  3. or download this
    eval { system("fake_command) };
    print "$@";