Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

perl-beginner · Perl Beginners Mailing List

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 3765
  • Category: Perl
  • Founded: Aug 2, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 27261 - 27290 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
27261 Paul.G
medura43 Send Email
Jan 29, 2012
9:47 am
Hi All Been looking at the stat function lately and have written a small bit of code in perl, but having difficulty getting it to work when using a while or...
27262 Shawn H Corey
shawnhcorey@... Send Email
Jan 29, 2012
1:11 pm
... Is your /home a separate partition? If so, then it has a directory called lost+found and you don't have permission to read its stats. The error message you...
27263 Shawn H Corey
shawnhcorey@... Send Email
Jan 29, 2012
1:31 pm
... Oops, got distracted by the wrong error. Try this instead: #!/usr/bin/perl use strict; use warnings; use File::stat; my $dir = '/home&#39;; opendir( my...
27264 David Precious
bigpresh Send Email
Jan 29, 2012
1:44 pm
On Sun, 29 Jan 2012 01:46:43 -0800 (PST) ... [...] ... The stat() call returned undef. If you print the value of $file within the loop, you'll see why;...
27265 Paul.G
medura43 Send Email
Feb 2, 2012
12:19 pm
Thank you everybody for your help. I am currently looking at everybodies response however, Shaun I think answered my particular question. cheers ...
27266 andy_bach@...
afbach1 Send Email
Feb 2, 2012
8:07 pm
Hey, Just in case, as "beginners&quot;, you'all might not be getting all the Perl buzz; YAPC::NA http://www.yapcna.org/ will be in Madison this June. Having been...
27267 seismokid
seismokid@... Send Email
Feb 2, 2012
9:59 pm
Andy, thanks! That's great to know. And I have a sister in Madison so combining this with seeing her is a real possibility.... :) --Peg ... [Non-text...
27268 mirate
ojosabroso Send Email
Feb 14, 2012
3:17 pm
This is a website I designed a few years ago. The CONTACT and EMAIL SUBSCRIBE forms used to work, and they are broken. When I click on the Submit button, I get...
27269 David Precious
bigpresh Send Email
Feb 14, 2012
3:23 pm
On Tue, 14 Feb 2012 14:21:16 -0000 ... Look in your web server's error_log or similar log file for clues as to what's going wrong. First, though, I'd very...
27270 mirate
ojosabroso Send Email
Feb 14, 2012
7:22 pm
This is a website I designed a few years ago. The CONTACT and EMAIL SUBSCRIBE forms used to work, and they are broken. When I click on the Submit button, I get...
27271 Todd
certguy12 Send Email
Feb 29, 2012
4:58 am
Where should i start ! Its very interesting to me, and cannot wait to learn more ! Thanks for your help and suggestions ! Todd...
27272 Chankey Pathak
chankeypatha... Send Email
Feb 29, 2012
5:07 am
LOL sorry for typo, *beginning ... -- Regards, Chankey Pathak <http://javaenthusiastic.blogspot.com> [Non-text portions of this message have been removed]...
27273 Alan Haggai Alavi
alan_haggai Send Email
Feb 29, 2012
8:10 am
Hello Todd, ... "Perl for Newbies" is a good tutorial: http://perl-begin.org/tutorials/perl-for-newbies/ Regards, Alan Haggai Alavi. -- The difference makes...
27274 Nicky McCatty
ojosabroso Send Email
Feb 29, 2012
9:34 pm
Hi David, I changed the shebang line in the original Matt's script, but still got the config error. Then I uploaded the NMS version after altering @referers,...
27275 Todd carpenter
certguy12 Send Email
Mar 1, 2012
5:12 am
Thanks will take a look at it tonight !  If i have any questions, i will ask ! Thanks again ! Todd ________________________________ From: Chankey Pathak...
27276 Chankey Pathak
chankeypatha... Send Email
Mar 1, 2012
8:03 am
Start with begging Perl or Learning Perl. http://www.perl.org/books/beginning-perl/ ... -- Regards, Chankey Pathak <http://javaenthusiastic.blogspot.com> ...
27277 Tony
nygsehorn31 Send Email
Mar 9, 2012
8:38 am
Hi all, Due to all the slashes and brackets and parentheses involved, it's a bit of a hassle to Google this to get answers. Can someone please tell me what...
27278 David Precious
bigpresh Send Email
Mar 9, 2012
8:52 am
On Fri, 09 Mar 2012 02:59:27 -0000 ... \d is a character class matching "digits"; {5,5} is a repetition range, matching between five and five repeats - so, it...
27279 timothy adigun
eternity8008 Send Email
Mar 9, 2012
11:40 am
Hi Tony, ... \d is a digit and represents [0-9], but not just [0-9] but also digits from non-roman scripts, while x{n,m} is for matching repetitions, i.e, ...
27280 timothy adigun
eternity8008 Send Email
Mar 26, 2012
1:35 am
Hi Fred, Please, check my comments and possible solution within your mail. ... The programming language is Perl not PERL. ... open (NEW, '>niceviewscript.pl&#39;)...
27281 timothy adigun
eternity8008 Send Email
Mar 27, 2012
6:50 am
Hi Fred, ... I don't know the version of FileZilla you have, but I believe you could download a new one for use. I use version 3.5.1, I think the recent one is...
27282 Christopher Chatfield
chris.chatfi... Send Email
Apr 1, 2012
8:21 pm
Is it possible to use javascript to call a perl script on a local machine? I want to create a search engine for my locally stored files, which include wget...
27283 Matthew K
matt_hew.rm Send Email
Apr 1, 2012
11:04 pm
You can use ActiveX and Javascript to do it in IE, pending you set up your browser correctly.  ...
27284 Shlomi Fish
shlomif2 Send Email
Apr 2, 2012
5:06 pm
Hi Christopher, On Sun, 01 Apr 2012 20:07:32 +0100 ... In addition to what Matthew said about IE and ActiveX, then a custom Firefox extension should be able to...
27285 Paul.G
medura43 Send Email
Apr 3, 2012
1:18 pm
Hi I have written a script that does what I want, but it looks rather messy. Would be interested if any one could indicate how I could make it more efficient....
27286 Shawn H Corey
shawnhcorey@... Send Email
Apr 3, 2012
1:30 pm
... Unused items should be undef: my (undef, undef, undef, $PV) = split(/\s+/, $result); You could alternately use an index: my $PV = (split(/\s+/,...
27287 merlyn@...
merlynstoneh... Send Email
Apr 3, 2012
1:58 pm
... Paul> open(CMD,"/usr/sbin/vgdisplay -v vg03 | /usr/bin/grep 'PV Name'|"); Paul> undef($/); Paul> $result = <CMD>; Paul> @result = split(/\n/,$result); my...
27288 Matthew K
matt_hew.rm Send Email
Apr 3, 2012
5:14 pm
DISCLAIMER: I don't have vgdisplay, so I can't really test this to see if it works, but it might be a little simpler to start with something closer to this....
27289 merlyn@...
merlynstoneh... Send Email
Apr 3, 2012
6:58 pm
... Matthew> while (`/usr/sbin/vgdisplay Matthew> -v vg03 | /usr/bin/grep 'PV Name| awk '{print Matthew> $4}'`) { Matthew>       Matthew> next if  $_ !~...
27290 Tim Lewis
twlewis64 Send Email
Apr 3, 2012
7:19 pm
Please forgive the hijack Randall. Will you be at the Perl conference in Madison? [Non-text portions of this message have been removed]...
Messages 27261 - 27290 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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