carlosAlberto
IS-IT--Management
Hi everybody,
I'm having a few problems passing a list (along with other variables) to a sub routine, then reading this list (@replyData) within the sub routine.
Call to sub routine:
buildStatusReport($ipAddress, $miboid, @replyData);
In subroutine:
my $ipAddress = $_[0];
my $miboid = $_[1];
# my @replyData =
How do i define @replyData in my sub routine which contains only the items from the replyData list ????
Thanks,
Carlos.
I'm having a few problems passing a list (along with other variables) to a sub routine, then reading this list (@replyData) within the sub routine.
Call to sub routine:
buildStatusReport($ipAddress, $miboid, @replyData);
In subroutine:
my $ipAddress = $_[0];
my $miboid = $_[1];
# my @replyData =
How do i define @replyData in my sub routine which contains only the items from the replyData list ????
Thanks,
Carlos.