Search the web
Sign In
New User? Sign Up
Perl_Official · Perl . CGI . Shell script
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1733 - 1762 of 2061   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1733
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...
Rajeev
raj_eev15
Offline Send Email
Apr 4, 2005
10:03 am
1734
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...
Raghavendra Rao
gvr_raghava
Offline Send Email
Apr 5, 2005
5:40 pm
1735
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
noggin_1979
Offline Send Email
Apr 5, 2005
10:14 pm
1736
... 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 ...
merlyn@...
merlynstoneh...
Online Now Send Email
Apr 6, 2005
9:32 am
1737
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...
Paul Alapatt
paulalapatt
Offline Send Email
Apr 6, 2005
4:48 pm
1738
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...
Sridhar
b_s_sridhar
Online Now Send Email
Apr 7, 2005
9:57 am
1739
Try setting the "Sticky bit" of the file. I think it works on unix, however I am not sure about linux. ... using ... security ... agreeable....
golagolu
Offline
Apr 7, 2005
3:19 pm
1740
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...
Kumar Arjunan
amyarjun
Offline Send Email
Apr 11, 2005
3:39 pm
1741
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...
ubercat
Offline
Apr 18, 2005
5:25 pm
1742
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...
ubercat
Offline
Apr 18, 2005
7:16 pm
1743
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
Offline
Apr 20, 2005
6:17 pm
1744
... 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...
merlyn@...
merlynstoneh...
Online Now Send Email
Apr 20, 2005
8:29 pm
1745
Hai, try this. I have done with a example. #!/usr/local/bin/perl open(STDOUT,">test.txt") || die "Cant open file"; ($_="kkvvttuu bbooppuuiiffss qqffssmm...
k prasanna
kprasanna_79
Offline Send Email
Apr 21, 2005
8:33 am
1746
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...
Jeff
ubercat
Offline Send Email
Apr 21, 2005
8:42 pm
1747
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...
junoon_hai_mujhe
junoon_hai_m...
Offline Send Email
Apr 27, 2005
4:21 pm
1748
... Approx code for achieving the same, maybe not optimal: $var1 = qq{field1,field2,"3232,34,56",field4,field5}; if($var1 =~...
Paul Alapatt
paulalapatt
Offline Send Email
Apr 27, 2005
6:14 pm
1749
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...
R
berkit_berkit
Offline Send Email
Apr 28, 2005
4:52 pm
1750
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...
Krishna R
krish_tamil
Offline Send Email
Apr 28, 2005
4:53 pm
1751
________________________________________ From: perl_official@yahoogroups.com [mailto:perl_official@yahoogroups.com] On Behalf Of Krishna R Sent: Thursday,...
Paul Alapatt
paulalapatt
Offline Send Email
Apr 29, 2005
2:22 am
1752
... 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") ; };...
Paul Alapatt
paulalapatt
Offline Send Email
Apr 29, 2005
2:22 am
1753
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...
bmvh01
Offline Send Email
May 5, 2005
5:43 am
1754
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...
Paul Alapatt
paulalapatt
Offline Send Email
May 5, 2005
4:07 pm
1755
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...
baski_28091979
Offline Send Email
May 5, 2005
4:08 pm
1756
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...
the_land_baron
Offline Send Email
May 7, 2005
5:07 am
1757
You already asked this. Do we have to endure the pain again?...
Mike Southern
mikesouthern
Offline Send Email
May 7, 2005
10:34 am
1758
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...
Krishna R
krish_tamil
Offline Send Email
May 9, 2005
8:12 am
1759
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...
com bio
combiofriends
Offline Send Email
May 10, 2005
5:14 pm
1760
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...
Carlos Ferrer
carlosjrferrer
Offline Send Email
May 11, 2005
9:26 pm
1761
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...
johncos1068
Offline Send Email
May 13, 2005
7:17 am
1762
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...
antonioantonioantonio...
antonioanton...
Offline Send Email
May 19, 2005
11:39 pm
Messages 1733 - 1762 of 2061   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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