Hello All, I am new to perl programming and targating Perl to use for Design Automation. Can anyone point me to few sample Perl programs to give a good and...
Hi I am new to this Group and New to Perl. I am working on Testing. I am planing to write scripts to run some programs. Can any body suggest which book is...
I would start with Learning Perl (Camel book) by O'Reilly. Then work yourself through the rest of the O'Reilly books. Learning perl got me started. Scott Roth ...
... Scott> I would start with Learning Perl (Camel book) by O'Reilly. Then work Scott> yourself through the rest of the O'Reilly books. Learning perl got me ...
Dear Raghavendra, I second Scott, the Learning Perl is excellent book. Alternatively you can check out the PERL BLACK BOOK. Further still, you can check up...
Hello Techies, I am trying to modifiy the file permissions on some files which are not owned by owner of the cgi-script. To be more precise, my cgi- script...
Try this; when u try to alter a file from web - you in user group apache the file ur collection give the user:group as userA:Apache In this manner we access...
I second that. The O'Reilly Learning Perl is an excellent book. I still use it as a reference even though I have a decent amount of Perl experience. ... work...
Hi everybody! I'm new to XML parsing modules in Perl. Currently I am writing a program that is supposed to parse an XML data file and dynamically organize the...
Hi everybody! (Listens to echo...) Just a quicky. What's a way to redirect standard output, (AKA STDOUT,) to an output file? I believe I used to know how to...
... ubercat> Just a quicky. What's a way to redirect standard output, (AKA STDOUT,) ubercat> to an output file? open STDOUT, ">outputfile" or die; ubercat> I...
Hai, try this. I have done with a example. #!/usr/local/bin/perl open(STDOUT,">test.txt") || die "Cant open file"; ($_="kkvvttuu bbooppuuiiffss qqffssmm...
Thanks man! I tried something like that before, and I do get my program's standard out to the file. The SQL server is still printing its own standard output...
I want to know if there is a way to do this is perl A sample of the data is: field1,field2,"3232,34,56",field4,field5 and i need to convert it into three...
when i try to insert data in ms access it show error in this line $db = DBI->connect("dbi:ODBC:$DSN","Admin","read") ; i have downloaded DBI and DBD:ODBC This...
Hi The first pattern match results are not carry when another pattern was used i.e $1,$2, etc values are not carried when used $var1=~ s/"//ig; this and also...
________________________________________ From: perl_official@yahoogroups.com [mailto:perl_official@yahoogroups.com] On Behalf Of Krishna R Sent: Thursday,...
... Try putting the whole thing in a eval { } and print the error to identify the PERL error. eval { $db = DBI->connect("dbi:ODBC:$DSN","Admin","read") ; };...
I have a text file that I would like to display as a web page with some additional html functions. At each "System Configuration" statement I would like to...
Dear Mike, This is very much possible. The code to achieve this should approximately look like this, this is just an impromptu created code, so please correct...
hi all I am very new to perl and i am learning thru manuals only so kindly help me to solve the following problem, and my job is related to document and text...
I have something along the line of: # FILE1.pl require "FILE2.pl"; eval { &function(); }; print "$@" if $@; print "This never prints.\n" #FILE2.pl sub function...
Hi You can try by removing the underscore before eval function i.e. eval { &function(); }; not _eval…. and i suppose you have any other coding other than...
Hello, while installing some package that has configure script we can pass the argument --PREFIX=/USR or --PREFIX=/USR/LOCAL etc. how do i pass such arguments...
Hi All, I recently installed Perl (Indigo Perl) to run under Windows XP/Apache, but cannot run anything. Can you provide me simple steps to do it? Thanks...
Hi, I am trying to write a perl script that calls Oracle lsnrctl and resets the listener password. The problem is that once I am into lsnrctl and issue the...
Hi: I'm making a daemon for linux, but this daemon stop if any error occurs. ¿How can I to do that this daemon do not stop never? Thanks and sorry for my bad...