Help for this page

Select Code to Download


  1. or download this
    while (my @fields = (getpwent)[6,7]) {
      map {print "$_\n"} @fields;
      print ("-" x 80);
    }
    
  2. or download this
    while (my @fields = (getpwent)[6,7]) {
      foreach my $item (@list) {
    ...
      }
      print ("-" x 80);
    }