deMize has asked for the wisdom of the Perl Monks concerning the following question:
Update:this thread apparently has received a lot of down votes, which I guess is no fault but my own.#!/blah/perl use Config::Crontab; my $ct = new Config::Crontab; $ct->read; my ($r) = $ct->select(-command_re => 'test'); print $r . "\n"; # Config::Crontab::Event=HASH(0 +xhex) print %r . "\n"; # 0 my %x = $ct->select(-command_re => 'test'); print %x . "\n"; # 1/8 my (%y) = $ct->select(-command_re => 'test'); print %y . "\n"; # 1/8
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using Data::Dumper
by Anonymous Monk on Nov 03, 2009 at 19:48 UTC | |
by deMize (Monk) on Nov 03, 2009 at 19:54 UTC | |
by AnomalousMonk (Archbishop) on Nov 04, 2009 at 01:03 UTC |