> for $filename (@ARGV) {

foreach my $glob (@ARGV) {
 foreach my $filename ( glob $glob  ) {
  # your code here
 }

That should allow you do to perl style globs from the command line:
*.fbi or single file names like foo.fbi

For some reason I wasn't able to do <$glob>

- Ron
_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Reply via email to