On Fri, 2008-09-26 at 13:15 -0700, JAaronAnderson.com wrote:
> my @userlist = $obj->command_ok(qw/user list/, "","","");
> # it then returns this info I think
> # “emailHandle”, “User FullName”
> # because it shows Array elements in memory
> # foreach of them but not the mapped qw word list hmmmmm
> 

Don't guess.  Use Data::Dumper to examine the contents so you know what
you're dealing with.

use Data::Dumper;
print '@userlist : ', Dumper [EMAIL PROTECTED];


-- 
Just my 0.00000002 million dollars worth,
  Shawn

Linux is obsolete.
-- Andrew Tanenbaum


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to