Help for this page

Select Code to Download


  1. or download this
       my %hash = map { $_ => 1 } @files;
        @files = keys %hash;
    
  2. or download this
    use List::Util qw(shuffle);
    @files = shuffle(@files);