FAQ 8.30 How can I convert my shell script to perl? #11011 (11/27/2008 2:03:02 AM) 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 ... brian125(4408)
File::Find and error detection458 (11/25/2008 7:54:47 AM) Read the docs however I cannot find a way to detect errors when using File::Find module - it prints the errors to stdout but there doesn't seem to be a way to detect that errors occured, e.g. permission er... Erik
perl naming convention288 (11/26/2008 11:21:14 PM) Hi, I'm wondering what is the widely accepted naming convention. In C++, boost library recommend 1. All variables, functions and classes shall not have upper cases. 2. Macro shall be upper cased. I'm wonderi... Peng
help with callbacks (?)458 (11/25/2008 7:32:41 PM) hi, Firstly, I'm not sure if this post is about callbacks, but here goes. I have two modules, in moduleA I have $self->{_coderef} = undef; # and later on... $self->{_coderef}->sayhello if defined $self->{_co... dan
use -e to check if file exists on win32459 (11/26/2008 10:02:51 PM) The c:/dir is exist. print -e 'C:/dir/"'; the result is 1 ,why? print -e 'C:/"'; the result is null This is perl, v5.10.0 built for MSWin32-x86-multi-thread (with 5 registered patches, see perl -V for more... mynews
mail script from Callendar book.2101 (11/26/2008 9:24:12 PM) I downloaded the html and perl items from chapter 3 of "Perl for Web Site Management" and changed addresses etc. The htmls call the perl script and everything seems to work down to the point where sendmail is a... wexfordpress
FAQ 8.21 Where do I get the include files to do ioctl() or syscall()? #16014 (11/26/2008 8:03:01 PM) 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 ... brian125(4408)
Reference Question.350 (11/24/2008 3:32:58 PM) I'm reading about perl references in a book called "Beginning Perl" by James Lee. I read ahead to the use of ->, and [], but I'm tripped up on the simpler examples prior to the use of ->, [], so I don't have ... DaLoverhino
Efficient Code583 (11/26/2008 2:03:16 PM) I have large file in following format. Table A { 17.64.0.0|17; 32.58.34.192|26; 32.58.157.0|24; 32.106.15.0|24; } Table B { 32.106.80.0|21; 32.106.88.0|24; 32.106.192.0|20; ... friend