Search the web
Sign In
New User? Sign Up
perl-beginner · Perl Beginners Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 26508 - 26542 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
26508
Hi, Does anyone know of a graphical debugger that will work with windows XP distribution? Thanks, Kevin...
mrkcoconnell
Offline Send Email
Jan 3, 2009
4:12 am
26509
To: perl-beginner@yahoogroups.com From: "mrkcoconnell" <mrkcoconnell@...> Date sent: Sat, 03 Jan 2009 04:12:09 -0000 ...
Jenda Krynicky
jendaperl
Online Now Send Email
Jan 3, 2009
2:30 pm
26510
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 ...
saurabh talwar
talwar_sunny
Offline Send Email
Jan 5, 2009
11:42 pm
26511
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...
vidhut singh
chat2vidhut
Offline Send Email
Jan 6, 2009
5:24 am
26512
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...
Jenda Krynicky
jendaperl
Online Now Send Email
Jan 6, 2009
12:19 pm
26513
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...
YogS
yogi_raj_143
Offline Send Email
Jan 6, 2009
1:37 pm
26514
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...
Dukelow, Don
dondukelow
Offline Send Email
Jan 6, 2009
3:27 pm
26515
... Certainly: Prompt => '/> ?$/' That means a ">" followed by an optional space followed by the end of the string. -- The Cross Reference -...
Jeff Pinyan
evilffej
Offline Send Email
Jan 7, 2009
11:29 pm
26516
Thank You! ... Don Dukelow HP/GM GSC33 License Team Tel: 810-728-3388 e-mail: dukelow@... ________________________________ From:...
Dukelow, Don
dondukelow
Offline Send Email
Jan 8, 2009
11:24 am
26517
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...
Dukelow, Don
dondukelow
Offline Send Email
Jan 8, 2009
4:26 pm
26521
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
Offline Send Email
Jan 14, 2009
6:46 pm
26522
... hooyar66> The problem I am having is that I can never get the arguments hooyar66> successfully sent! hooyar66> Redirect without arguments works fine - but...
merlyn@...
merlynstoneh...
Online Now Send Email
Jan 14, 2009
7:36 pm
26523
... approached ... 777 0095 ... discussion ... That's fantastic - many thanks Randal. ... "authority" is the word - the other sources I used didn't state a ...
hooyar66
Offline Send Email
Jan 14, 2009
8:48 pm
26524
... 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...
david wright
david_v_wright
Online Now Send Email
Jan 15, 2009
5:28 am
26525
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...
Dukelow, Don
dondukelow
Offline Send Email
Jan 19, 2009
4:19 pm
26526
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...
Dhanashri Bhate
dhanashri_bhate
Offline Send Email
Jan 19, 2009
4:48 pm
26527
... 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]) { } ...
kenshail2003
Offline Send Email
Jan 19, 2009
10:59 pm
26528
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...
Dukelow, Don
dondukelow
Offline Send Email
Jan 22, 2009
4:23 pm
26529
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...
Dukelow, Don
dondukelow
Offline Send Email
Jan 26, 2009
2:46 pm
26530
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...
Dukelow, Don
dondukelow
Offline Send Email
Jan 27, 2009
3:26 pm
26531
... The simplest method is to put braces around the variable name: "$kstat -p $driver:${instance}::'/^link_/" But you could also do: "$kstat -p...
Jeff Pinyan
evilffej
Offline Send Email
Jan 27, 2009
3:57 pm
26532
Sorry but I tried all three ways and get nothing in stdout. The stderr get a usage messag frp kstat. ... Don Dukelow HP/GM GSC33 License Team Tel:...
Dukelow, Don
dondukelow
Offline Send Email
Jan 27, 2009
4:43 pm
26533
!post-top not do Please From: "Dukelow, Don" <dukelow@...> ... And print "$kstat -p $driver:${instance}::'/^link_/"; print's what? Does that look how you...
Jenda Krynicky
jendaperl
Online Now Send Email
Jan 27, 2009
5:36 pm
26534
... 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...
Jeff Pinyan
evilffej
Offline Send Email
Jan 27, 2009
8:01 pm
26536
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...
Dukelow, Don
dondukelow
Offline Send Email
Jan 28, 2009
12:24 pm
26538
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...
Dukelow, Don
dondukelow
Offline Send Email
Feb 11, 2009
9:44 pm
26539
http://www.akadia.com/services/email_attachments_using_perl.html ... From: Dukelow, Don <dukelow@...> Subject: [PBML] Perl Mail To:...
bill lanier
wlanie01
Offline Send Email
Feb 11, 2009
11:25 pm
26540
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_c_r
Offline Send Email
Feb 25, 2009
5:34 am
26541
... 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 ...
merlyn@...
merlynstoneh...
Online Now Send Email
Feb 25, 2009
4:13 pm
26542
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...
Dukelow, Don
dondukelow
Offline Send Email
Feb 25, 2009
4:37 pm
Messages 26508 - 26542 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help