X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXUtil.pm;h=a1fb13ba2d34771044598ca3753f8a4238754830;hb=f3688be5d3f50cccf204d3d01dcaca1e9db7d4f7;hp=868110ea36d6e7de266d4c7e28a704181787b276;hpb=cc91428ca79b3cdfdc7733505384f5983ad6c7fa;p=spider.git diff --git a/perl/DXUtil.pm b/perl/DXUtil.pm index 868110ea..a1fb13ba 100644 --- a/perl/DXUtil.pm +++ b/perl/DXUtil.pm @@ -13,11 +13,18 @@ use Carp; require Exporter; @ISA = qw(Exporter); -@EXPORT = qw(atime ztime cldate cldatetime slat slong yesno promptf parray parraypairs +@EXPORT = qw(atime ztime cldate cldatetime slat slong yesno promptf + parray parraypairs shellregex print_all_fields cltounix ); @month = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec); +%patmap = ( + '*' => '.*', + '?' => '.', + '[' => '[', + ']' => ']' +); # a full time for logging and other purposes sub atime @@ -168,3 +175,11 @@ sub print_all_fields return @out; } +# generate a regex from a shell type expression +# see 'perl cookbook' 6.9 +sub shellregex +{ + my $in = shift; + $in =~ s{(.)} { $patmap{$1} || "\Q$1" }ge; + return '^' . $in . '$'; +}