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...
Show off your group to the world. Share a photo of your group with us.

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 25929 - 25959 of 26720   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
25929
I'm trying to install Perl SSH on a HP 32 bit system with OS B.11.11 U 9000/800. When I do a "make test" after compiling I get following error. # make test rm...
Dukelow, Don
dondukelow
Offline Send Email
Jan 2, 2008
5:27 pm
25931
I'm doing my @lb10 = qw/lb10 lb20 lb30/; my @lb21 = qw/lb21 lb31 lb11/; my @lb32 = qw/lb32 lb12 lb22/; my @arrList = qw/@vmcdlb10 @vmcdlb21 @vmcdlb32/; &main...
Dukelow, Don
dondukelow
Offline Send Email
Jan 8, 2008
4:01 pm
25932
... Hash: SHA1 ... There's your trouble. The "qw" operator is interpreting those variable names as strings which is not what I understand you wanting to do. ...
Peter L. Berghold
blue_cowdawg
Offline Send Email
Jan 8, 2008
4:07 pm
25933
Thank you that helped but I also had to add a index for the sub array like. print "$arrList->[$x][1]\n"; I can live with this thanks again. ... Don Dukelow HP...
Dukelow, Don
dondukelow
Offline Send Email
Jan 8, 2008
4:23 pm
25934
Can anyone (hopefully) tell me why this doesn't work? All it *should* do is output the contents of the CRL. ... #!/usr/bin/perl -w use Convert::ASN1; use...
Ward.P.Fontenot@...
Send Email
Jan 8, 2008
4:46 pm
25935
Greetings all... I used references found elsewhere to create a script to analyze log files for specific things. The "specific things" are stored in a mysql...
computerdribble
Offline Send Email
Jan 8, 2008
5:42 pm
25936
I think what I want is to be able to macro expand a variable that contains references to variables example: my $blah ="( ( $field =~ /blah/) and ($field =~...
computerdribble
Offline Send Email
Jan 8, 2008
6:36 pm
25937
... computerdribble> how do I macro expand ? Is the answer in the FAQ not clear enough? -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503...
merlyn@...
merlynstoneh...
Online Now Send Email
Jan 8, 2008
6:43 pm
25938
which FAQ ? thanks by the way. ... 777 0095 ... training!...
computerdribble
Offline Send Email
Jan 8, 2008
7:05 pm
25939
http://faq.perl.org/ ________________________________ From: perl-beginner@yahoogroups.com [mailto:perl-beginner@yahoogroups.com] On Behalf Of computerdribble ...
Boyle, Christopher
Christopher.Boyle@...
Send Email
Jan 8, 2008
7:13 pm
25940
Nope , not in there. there is nothing in the FAQ concerning Macro expansion. Only Macros for Vi (ick) Went through that AGAIN and no luck. anywhere else? I...
computerdribble
Offline Send Email
Jan 8, 2008
7:20 pm
25941
... computerdribble> Nope , not in there. there is nothing in the FAQ concerning Macro computerdribble> expansion. By the way, it's on *YOUR DISK*. No need...
merlyn@...
merlynstoneh...
Online Now Send Email
Jan 8, 2008
7:39 pm
25942
Thank you. I went onto the faq.perl.org site and searched through all of that and nothing came back. This is one of the problems and reasons I have stayed...
computerdribble
Offline Send Email
Jan 8, 2008
8:38 pm
25943
From: "computerdribble" <computerdribble@...> ... Compile each test just once and run it repeatedly. Before opening the log file, but after reading the...
Jenda Krynicky
jendaperl
Offline Send Email
Jan 9, 2008
1:14 am
25944
Thank you! One problem I ran into was the EVAL was killing 4 gigs of memeory on large log files. At least I traced it back to that. This is why I wanted to...
Computer-Dribble
computerdribble
Offline Send Email
Jan 9, 2008
1:41 pm
25945
- No I don't. And others don't either. - But you do not need to read what I wrote originaly and what you replied last time, you remember it, don't you? -...
Jenda Krynicky
jendaperl
Offline Send Email
Jan 9, 2008
2:13 pm
25946
I humbly thank ALL who have read or responded. Can you, with all of the examples to date... do away with the EVAL of the variable that contains the testing ...
computerdribble
Offline Send Email
Jan 9, 2008
3:29 pm
25947
From: "computerdribble" <computerdribble@...> ... No. You can't. It's as simple as that. If you did not store the expression like this in the database,...
Jenda Krynicky
jendaperl
Offline Send Email
Jan 9, 2008
3:43 pm
25948
Thank you for responding. ... dang it all! oh well. ... I would love to.. except there are certain instances that what needs to be checked is.. well let me...
computerdribble
Offline Send Email
Jan 9, 2008
4:39 pm
25949
Hello Folks, This is my first question here in the new year.. so happy new year to you all!! ... My goal is to fill a file - called testfile with data by...
Santosh Sugur
santosh_sugur
Offline Send Email
Jan 10, 2008
2:21 pm
25950
And happy new year to you sir. ... kill the parent ... you didn't [0:dwright/perl> perldoc -f kill kill SIGNAL, LIST Unlike in the shell, if SIGNAL is...
david wright
david_v_wright
Online Now Send Email
Jan 11, 2008
9:41 am
25951
Thanks David. Frankly I did not think of head -c 1024 /dev/urandom > testfile2 as a solution.. makes me feel foolish now. And yes I should use unlink instead...
Santosh Sugur
santosh_sugur
Offline Send Email
Jan 11, 2008
10:27 am
25952
Hi All, $textmatter='sdfjsd fjgj "fig1" jfbj "fig1" fg hjhg "tab1" djhdj "tab2" asdjfj "tab1"'; @array=$textmatter=~/"(fig[0-9]+|tab[0-9]+)"/g; print "@array";...
anil
templateteam
Offline Send Email
Jan 11, 2008
11:12 am
25953
... david> this should accomplish the same behaviour: david> if (-e "./testfile") { unlink "./testfile"; } Or even just: unlink "testfile"; # and ignore the...
merlyn@...
merlynstoneh...
Online Now Send Email
Jan 11, 2008
3:42 pm
25954
From: "anil" <n.selvakumar@...> ... You can't do that in the regexp. (Well ... you can, if you are very very cheaky. Unless the strings are...
Jenda Krynicky
jendaperl
Offline Send Email
Jan 12, 2008
2:07 am
25955
Hell to all, I am new in this group. I want to know that could we can convert a xml file to html file through perl. If yes kindly give me some...
PRAVEEN CHAUHAN
best_praveen...
Offline Send Email
Jan 12, 2008
8:11 am
25956
Hello All, With a growing demand for Perl automation ,we are pleased to announce a new weekend batch of "Perl Automation" for students & Professionals. Course...
concepts_systems
concepts_sys...
Offline Send Email
Jan 12, 2008
10:05 am
25957
... concepts> With a growing demand for Perl automation ,we are pleased to announce concepts> a new weekend batch of "Perl Automation" for students &...
merlyn@...
merlynstoneh...
Online Now Send Email
Jan 12, 2008
10:14 am
25958
On Sat, 2008-01-12 at 10:14, merlyn@... wrote: <SNIP> ... Surely this is still a valid way of displaying it. If you are getting picky, they are both...
Andy Dixon
andy.dixon@...
Send Email
Jan 12, 2008
2:48 pm
25959
From: "PRAVEEN CHAUHAN" <best_praveen2006@...> ... That's not very nice of you ... ;-) ... You need some XML parser. XML::Rules, XML::Twig,...
Jenda Krynicky
jendaperl
Offline Send Email
Jan 12, 2008
4:32 pm
Messages 25929 - 25959 of 26720   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