Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse -F: -lane 'push @x, $F[0] if /^[A-Z]/}{print for so
    +rt @x'
    
    ...
    {
        print $_ foreach (sort @x);
    }
    
  2. or download this
    use warnings;
    use strict;
    ...
        push @out, $fields[0] if /^[A-Z]/;
    }
    print "$_\n" for sort @out;