Help for this page

Select Code to Download


  1. or download this
    my @lines;
    while (<>) {
    ...
    for (@lines) {
       print "$_->[0]\n";
    }
    
  2. or download this
    print map "$_->[0]\n",
          sort { $a->[9] <=> $b->[9] }
          map [ $_, split /\t/ ],
          map { chomp( my $s = $_; ); $s }
          <>;