Help for this page

Select Code to Download


  1. or download this
    grep { !/^\.\.?$/ && -d }
  2. or download this
    grep { !/\A\.\.?\z/ && -d }
  3. or download this
    grep { $_ ne '.' and $_ ne '..' and -d }