Parimala@123 has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/local/bin/perl -w use strict; use Data::Dumper; use Net::FTP; use lib '/export/home/pvuser/lib'; use Eirteic; # # my $er = Eirteic->start; # # Initialise Library # if( @ARGV > 0 ) { # Arg we testing or for real ? $er->{test} = 1; $er->{debug} = 1; } $er->log( "Getting Customer Groups" ); $er->getCustomerGroups(); if( $er->{debug} > 1 ) { print "Usage:\n"; print Dumper %usage; print "Latency:\n"; print Dumper %latency; print "Jitter:\n"; print Dumper %jitter; print "Site:\n"; print Dumper %site; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Use of Data::Dumper
by moritz (Cardinal) on Jan 15, 2009 at 09:24 UTC | |
|
Re: Use of Data::Dumper
by johngg (Canon) on Jan 15, 2009 at 11:46 UTC | |
|
Re: Use of Data::Dumper
by toolic (Bishop) on Jan 15, 2009 at 13:36 UTC | |
|
Re: Use of Data::Dumper
by ww (Archbishop) on Jan 15, 2009 at 11:49 UTC | |
|
Re: Use of Data::Dumper
by targetsmart (Curate) on Jan 15, 2009 at 13:04 UTC | |
|
Re: Use of Data::Dumper
by bradcathey (Prior) on Jan 15, 2009 at 14:07 UTC |