Help for this page

Select Code to Download


  1. or download this
    my ( @temp, %authors );
    @temp = sort map { my @b=split; $b[2]; } `ls -l /path/to/authors`;
    
  2. or download this
    foreach ( @temp )
    {
      $authors{$}=1 if not $authors{$_} and length $_;
    }
    
  3. or download this
    print "$_\n" for keys %authors;