Help for this page

Select Code to Download


  1. or download this
    $example = `mount`;
    $example = $! if $!;
    
    print $example;
    
  2. or download this
    $example = `mount`;
    $error = $! if $!;
    
    print $example;
    print $error;