Help for this page

Select Code to Download


  1. or download this
    @arrayUnsorted=('page1.html', 'page11.html', 'page2.html', 'page3.html
    +');
    
  2. or download this
    @arraySorted=('page1.html', 'page2.html', 'page3.html', 'page11.html')
    +;
    
  3. or download this
    opendir my $dir, "." or die "Cannot open directory: $!";
    my @files = readdir $dir;
    ...
         push @filesHTML, $_;
        }
    }