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( "{.*,*}" );
Comment on
Re^3: File::Glob Ignores Dot Files
In Section
Seekers of Perl Wisdom