Help for this page

Select Code to Download


  1. or download this
    my @files;
    while(<>) {
        chomp;
        push @files, $_;
    }
    
  2. or download this
    chomp( my @files = <> );
    
  3. or download this
    my @sorted = map /.*\0(.*)/s,
                 sort
    ...
                   . "\0"
                   . $_,
                 @files;