# HG changeset patch # User Dario Sestito # Date 1277809104 -3600 # Node ID a215187752cfcd8b3a9f7f471daab26c2463b9ac # Parent 60fee4a35d67334b61152a1d89e90cf44819d8e9 Allow shell wildcards in input file names diff -r 60fee4a35d67 -r a215187752cf uh_parser/uh.pl --- a/uh_parser/uh.pl Mon Jun 28 14:13:42 2010 +0100 +++ b/uh_parser/uh.pl Tue Jun 29 11:58:24 2010 +0100 @@ -42,7 +42,11 @@ 'basedir=s' => \$basedir, 'help!' => \$help )); -my @logfiles = @ARGV; +my @logfiles = (); +for my $logfilesarg (@ARGV) +{ + push(@logfiles, glob($logfilesarg)); +} if ($help) {