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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1695 - 1724 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1695
I have to write a perl script that transport xml using rpc::xml How do i do that. Any comments...
k_pat71
Offline Send Email
Feb 3, 2005
5:15 pm
1696
hi, i am using Archive::zip to zip up a folder containg certain files. I am using $zip->addFile() to add the files, and then using $zip- ... however, the files...
Gautam Bhagra
gautam_bhagra
Offline Send Email
Feb 7, 2005
5:31 pm
1697
Has anyone used perldoc before? I can't understand how to run it. We have built some modules..below is an example of how I am trying to run it. Can someone let...
roth.242@...
noggin_1979
Offline Send Email
Feb 9, 2005
6:55 pm
1698
hi every one can any one help me how use a external perl program in my perl program...
venkat_samuel
Offline Send Email
Feb 20, 2005
10:06 pm
1699
One way to do it is as follows require pathToExternalProgram/externalProgram.pl Then in Program.pl last line should be 1; ... From: venkat_samuel To:...
Ken Shail
kenshail2003
Offline Send Email
Feb 21, 2005
4:08 pm
1700
Hi, You can use LWP module for this. If you want to get some inner pages details, better go for WWW::Mechanize module. Regards, Suresh venkat_samuel...
skumar
psk_suresh
Offline Send Email
Feb 21, 2005
4:08 pm
1701
Hi U can use in the follwing ways require "test.pl"; or system("perl test.pl"); by Gopal venkat_samuel <venkat_samuel@...> wrote: hi every one can any...
Krishna R
krish_tamil
Offline Send Email
Feb 21, 2005
4:08 pm
1702
Do you mean bring in to your perl programme another perl program that you have already written? ... From: venkat_samuel To: perl_official@yahoogroups.com Sent:...
Ken Shail
kenshail2003
Offline Send Email
Feb 21, 2005
4:09 pm
1703
can anybody give me idea how to send data from RPC::XML::Cleint side to the database using use DBI module __________________________________ Do you Yahoo!? ...
kamlesh patel
k_pat71
Offline Send Email
Feb 21, 2005
6:57 pm
1704
Hi All Currently i am developing a FTP automation script using 'put' fucntion of Net::FTP Module. I am able to upload the file but i need to append a file...
Krishna R
krish_tamil
Offline Send Email
Feb 22, 2005
3:19 pm
1705
Yes Ken ... that you have already written? ... program ... Service....
venkat_samuel
Offline Send Email
Feb 24, 2005
6:45 pm
1706
Hi all, Through perl program How can i map ('Map the Network Drive') and assign a drive letter to that connection??? Thanks SAM...
venkat_samuel
Offline Send Email
Mar 1, 2005
8:05 pm
1707
Isn't this down to your operating system? Which OS is it? Have you tried something like $sysMessage= '<map syntax for your os>'; system $sysMessage; ... From:...
Ken Shail
kenshail2003
Offline Send Email
Mar 1, 2005
9:21 pm
1708
Quick and dirty: On a PC $status = system "net use map DRIVELETTER \\\\IPADDRESS_OR_HOST\\SHARE /User:USERNAME PASSWORD"; (See DOS documentation on NET command...
Mike Southern
mikesouthern
Offline Send Email
Mar 2, 2005
12:08 am
1709
Hi all, I get a sock variable (sock handle) with value "IO::Socket::INET=GLOB(0x839c464)" and store it in my mysql database. When i retrieve this data , its...
Garcia
josegarciaju...
Offline Send Email
Mar 6, 2005
6:24 pm
1710
Exists any way to readline enter in a loop when enter in STDIN input. I need a input but not depends a user entry to program continue running. It's also like...
Garcia
josegarciaju...
Offline Send Email
Mar 6, 2005
6:24 pm
1711
Hi, Please help me in making a list of files in different dirs eg if dir structure is like this and I want to list files "file*.txt" ...
pkkjb
Offline Send Email
Mar 6, 2005
6:25 pm
1712
http://www.india-seo.com/perl/cookbook/ch09_08.htm ... From: pkkjb To: perl_official@yahoogroups.com Sent: Friday, March 04, 2005 10:39 PM Subject: [Perl] list...
Ken Shail
kenshail2003
Offline Send Email
Mar 7, 2005
11:48 pm
1713
@files = <dir1/subdir1/subdir2/file*.txt>;...
whinnim
Offline Send Email
Mar 7, 2005
11:48 pm
1714
Hi all :) How method i can use to check if socket connection is alive? Tks! Garcia (Brasil)...
Garcia
josegarciaju...
Offline Send Email
Mar 7, 2005
11:49 pm
1715
... How did you set the value of $sock to "IO::Socket::INET=GLOB(0x839c464)"?...
whinnim
Offline Send Email
Mar 7, 2005
11:50 pm
1716
... my $rin=''; my $rout; vec($rin,fileno STDIN,1)=1; while( !select($rout=$rin, undef, undef, 0) ){ print "continue running\n"; sleep 1; } $_ = <STDIN>; print...
whinnim
Offline Send Email
Mar 7, 2005
11:53 pm
1717
Hi all, i want to learn how i can use perl for writing Firewall...and i wait for your advicers of learning oit... thanks..... ...
iiiiii iiiiii
ervozel
Offline Send Email
Mar 8, 2005
3:55 am
1718
... pkkjb> Please help me in making a list of files in different pkkjb> dirs pkkjb> eg if dir structure is like this and I want to pkkjb> list files...
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 8, 2005
3:56 am
1719
U can try with File::Find module or system(dir *.txt/s/b) by Gopal pkkjb <pkkjb@...> wrote: Hi, Please help me in making a list of files in different ...
Krishna R
krish_tamil
Offline Send Email
Mar 8, 2005
3:58 am
1720
... Krishna> U can try with File::Find module Your keyboard is broken? It's really hard to type "yo" in front of "u"? Krishna> system(dir *.txt/s/b) Very...
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 8, 2005
5:50 pm
1721
... whinnim> while( !select($rout=$rin, undef, undef, 0) ){ whinnim> print "continue running\n"; whinnim> sleep 1; whinnim> } whinnim> $_ = <STDIN>; ...
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 8, 2005
5:52 pm
1722
Very good habit, Thanks Keep it up This will help u in feature "Randal L. Schwartz" <merlyn@...> wrote:>>>>> "Krishna" == Krishna R writes: Krishna>...
Krishna R
krish_tamil
Offline Send Email
Mar 8, 2005
9:57 pm
1723
writing $socket var direct to database!...
Garcia
josegarciaju...
Offline Send Email
Mar 8, 2005
9:59 pm
1724
Hi all! I have a socket open and connected, right? I need to check if a socket is receiving data. Itīs possible? i see perldoc IO::Socket, but donīt find...
Garcia
josegarciaju...
Offline Send Email
Mar 10, 2005
6:09 pm
Messages 1695 - 1724 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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