I though this would be simple, but apparently I can't do:

script.pl *.ext

in the WinXP command processor.

Is there a built-in solution? (i.e. not a CPAN module?)

link|improve this question

58% accept rate
feedback

2 Answers

up vote 4 down vote accepted

File::DosGlob is a core module:

#!/usr/bin/perl

use strict;
use warnings;

use File::DosGlob qw( glob );
print map { "$_\n"} map { glob } @ARGV;
__END__
    C:\Temp> tgh *.pl
    ...
    tgh.pl
    tgm.pl
    thg.pl
    thk.pl
    tjl.pl
    tjm.pl
    tkj.pl
    tkl.pl
link|improve this answer
1  
FWIW, File::Glob and built-in glob function are synonymous since Perl 5.6. – spoulson Jul 14 '09 at 14:53
I meant File::DosGlob ... sorry. – Sinan Ünür Jul 14 '09 at 14:54
feedback

Use the glob function.

...returns a (possibly empty) list of filename expansions on the value of EXPR such as the standard Unix shell /bin/csh would do...

link|improve this answer
3  
But only use it on Windows. If you use it on Unix, you risk globbing real file names; asterisks and question marks are valid characters in Unix file names. – Rob Kennedy Jul 14 '09 at 14:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.