Help for this page

Select Code to Download


  1. or download this
    foreach $mk (@folders) {
       next if $mk eq '.';
       ...
    }
    
  2. or download this
    foreach $mk (grep !/^\.\z/, @folders) {
       ...
    }
    
  3. or download this
    foreach $mk (grep { $_ ne '.' } @folders) {
       ...
    }