From: Gurusamy Sarathy Date: Fri, 7 Aug 1998 21:51:52 +0000 (+0000) Subject: allow more compatible interpretation of spaces File::DosGlob::glob() X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=163d180b58c52940c22cec66c02d57eda243c262;p=p5sagit%2Fp5-mst-13.2.git allow more compatible interpretation of spaces File::DosGlob::glob() patterns p4raw-id: //depot/maint-5.005/perl@1750 --- diff --git a/lib/File/DosGlob.pm b/lib/File/DosGlob.pm index 24b28b2..594ee2e 100644 --- a/lib/File/DosGlob.pm +++ b/lib/File/DosGlob.pm @@ -97,17 +97,27 @@ my %entries; sub glob { my $pat = shift; my $cxix = shift; + my @pat; # glob without args defaults to $_ $pat = $_ unless defined $pat; + # extract patterns + if ($pat =~ /\s/) { + require Text::ParseWords; + @pat = Text::ParseWords::parse_line('\s+',0,$pat); + } + else { + push @pat, $pat; + } + # assume global context if not provided one $cxix = '_G_' unless defined $cxix; $iter{$cxix} = 0 unless exists $iter{$cxix}; # if we're just beginning, do it all first if ($iter{$cxix} == 0) { - $entries{$cxix} = [doglob(1,$pat)]; + $entries{$cxix} = [doglob(1,@pat)]; } # chuck it all out, quick or slow @@ -174,6 +184,15 @@ backslashes and forward slashes are both accepted, and preserved. You may have to double the backslashes if you are putting them in literally, due to double-quotish parsing of the pattern by perl. +Spaces in the argument delimit distinct patterns, so +C globs all filenames that end in C<.exe> +or C<.dll>. If you want to put in literal spaces in the glob +pattern, you can escape them with either double quotes, or backslashes. +e.g. C, or +C. The argument is tokenized using +C, so see L for details +of the quoting rules used. + Extending it to csh patterns is left as an exercise to the reader. =head1 EXPORTS (by request only) @@ -224,5 +243,7 @@ perl perlglob.bat +Text::ParseWords + =cut