|
Posting Guidelines for comp.lang.perl.misc ($Revision: 1.8 $) Outline Before posting to comp.lang.perl.misc Must - Check the Perl Frequently Asked Questions (FAQ) - Check the other standard Perl docs (*.pod) Really Really Should - Lurk for a while before posting - Search a Usenet archive If You Like - Check Other Re... 11 Apr 2008 02:07
FAQ 9.5 How do I extract URLs? This is an excerpt from the latest version perlfaq9.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 10 Apr 2008 22:09
Getting started with HTTP::Proxy Hi. I don't know anything about proxies or networking yet I've been tasked with protecting some content on a media server and I'm guessing a proxy is the way to go. I'm playing around with HTTP::Proxy just to get a feel for things. All of the examples and discussions seem geared to a proxy which sits on a user's co... 10 Apr 2008 16:07
FAQ 8.47 How do I keep my own module/library directory? This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 10 Apr 2008 15:19
Unpack - getting values directly into the correct variables Hello all, I'm just starting to get into perl, so please forgive me if I'm asking something obvious. I'm using the unpack function to parse through a fixed length file. It's working well, but there's lots and lots of fields, and I'd like to make the code more readable. What I have now is this: $LOGFILE =... 12 Apr 2008 06:09
FAQ 8.45 How do I install a module from CPAN? This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 10 Apr 2008 08:53
FAQ 8.41 How do I use an SQL database? This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 10 Apr 2008 02:54
Uninitialized values in hash Hi, I am running the following code: use strict; use warnings; my $verbose = 1; my $info = "[INFO] :"; my $error = "[ERROR]:"; my $configFile = "config.dat"; # Recommended plugins. my %User_Preferences = (); ####################### Subroutines ####################### ###################... 10 Apr 2008 15:19
Sendmail my $email = populateEmail("test"); print $email; open(SENDMAIL, "|/usr/lib/sendmail -oi -t -i") or print "cannot open SENDMAIL: $!"; print SENDMAIL <<"EOF"; From: <deepan\@juniper.net> To: ${email} Subject: [SUSTAINING TICKET] Case Content-type: text/html testing EOF close(SENDMAIL); The above code re... 10 Apr 2008 02:54
FAQ 8.49 How do I add a directory to my include path (@INC) at runtime? This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 9 Apr 2008 21:13 |