Help for this page

Select Code to Download


  1. or download this
        my @dots = grep { /^\./ } readdir(DIR);
    
  2. or download this
        my @not_dots = grep { !/^\./ } readdir(DIR);