Help for this page

Select Code to Download


  1. or download this
    my @result = ();
    foreach (split("\n",`mount -n`)) {    
        push @result, (split)[0,4];
    }
    my %result = @result;