Hi I am having problems going through the hash reference and outputting the result. Can someone tell me how to traverse thorugh the output of "p4 info" using ...
Couple of ways --- 1. my @p4=@$p4_info ; 2. my @p4=@{$p4->Run( "info" )}; after that you can easily process @p4 array .... ~vidhut ... From: saurabh talwar...
From: "saurabh talwar" <talwar.saurabh@...> ... use Data::Dumper; print Dumper($p4_info); Once you know what's inside the $p4_info you can acces the...
Hello Jenda, Thanks for your response. I am comfortable with SQL so I'll try that option too... -- YogS ... [Non-text portions of this message have been...
I'm working with the Net::Telnet module and having trouble with the prompt. I have two sets of network switches and the respond to two very slight differences...
I'm using Perls Net::Telnet module to connect to Cisco switches. After I do several show commands and put the output in a file I go back and pull the...
Hi I have the following two scripts test.cgi & displaytest.cgi test.cgi is intended to redirect itself to displaytest.cgi and send some arguments. The problem...
... hooyar66> The problem I am having is that I can never get the arguments hooyar66> successfully sent! hooyar66> Redirect without arguments works fine - but...
... approached ... 777 0095 ... discussion ... That's fantastic - many thanks Randal. ... "authority" is the word - the other sources I used didn't state a ...
... yup, as advertised. ... yup, I don't see the redirect method accepting an hashref as a arg in the docs. ... yup, again, I don't see the redirect method...
I'm working with a hash of hashes and I'm testing for the sccond key, but it doesn't seem to work. if (exists $RHASH->{key1}->{key2}) { do this... } else { No...
Hello, See these, http://perldoc.perl.org/functions/exists.html http://www.perl.com/doc/manual/html/pod/perlfunc/exists.html they both mention that, the...
... long as the final operation is a hash or array key lookup or subroutine name: if (exists $ref->{A}->{B}->{$key}) { } ... $ref->{A}->{B}->[$ix]) { } ...
I'm tyrying to install Math::Pari and I keep getting error below. I have Math-BigInt-Pari-1.13 installed and the GMP library installed. I don't understad the...
I'm trying to install Math-Pari-2.010800 Perl module. When I run the "perl Makefile.PL" command I get the following errors. I can't find the pari library...
I know I should know this, but I've always had quoting problems. I'm doing a Perl ssh using UNIX kstat command. ($stdout, $stderr, $exit) = $ssh->cmd("$kstat...
!post-top not do Please From: "Dukelow, Don" <dukelow@...> ... And print "$kstat -p $driver:${instance}::'/^link_/"; print's what? Does that look how you...
... I take it that was "STDERR gets a usage message from kstat"? I would guess your variables don't hold what you think they hold. Try printing them out for...
You were right my $kstat had "kstat -i" in it which I forgot about. I replaced it with "-p" and all is well. Thanl You! ... Don Dukelow HP/GM GSC33 License...
I'm generating text file in Perl, but I need to e-mail them out. This is on a Sun Solaris 10 and it has mailx command on it. I need to send the files as...
sir, i need to find one string from paragraph and to convert all the letters in paragraph to 'X', except that string. can anyone help to correct it. i have...
... sajan> sir, i need to find one string from paragraph and to convert all the sajan> letters in paragraph to 'X', except that string. can anyone help to ...
I'm running Solaris 10 and my Perl script won't work under crontab. Well part of it does anyway. I'm making a file with headers in it and that part works...