http://www.perlmonks.org?node_id=636421


in reply to Re: Re: File::Glob Ignores Dot Files
in thread File::Glob Ignores Dot Files

System directories '.' and '..' can be ignored just by using file test flag '-f': my @files = grep { -f } bsd_glob( "{.*,*}" );