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 your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 1706 - 1735 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
1725
... Garcia> Hi all! Garcia> I have a socket open and connected, right? Garcia> I need to check if a socket is receiving data. Itīs possible? Garcia> i see...
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 10, 2005
6:10 pm
1726
hi all i am new to this group and i would like to learn perl. so pls. tell me some web sites to learn basic perl and if there is any editor for using perl. ...
baski_28091979
Offline Send Email
Mar 14, 2005
5:59 pm
1727
... baski> i am new to this group and i would like to learn perl. so baski> pls. tell me some web sites to learn basic perl See the resources listed at...
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 14, 2005
9:55 pm
1728
Hi, you can go through the PERL tutorial at http://www.sthomas.net/oldpages/roberts-perl-tutorial.htm Books : The 3 books that you must have are (All OReilly) ...
Nikhil R. Bhandari
niki2001_in
Offline Send Email
Mar 15, 2005
4:35 pm
1729
Hi there. I am currently working on a program that uses the 's' operator to substitute words within some specified text. Now I can do this no problem as one...
kumincam
Offline Send Email
Mar 18, 2005
3:59 pm
1730
Below is the sample script. You can start from here ==================== #!/bin/perl $cmd="s/Hoo/How/g"; $text="Hoo are you"; print "Text before operation-->...
golagolu
Offline
Mar 18, 2005
7:38 pm
1731
Dear: You can do one thing. write a program which ask for Enter String to search: Enter String to replace: Enter file name: or you can pass it as parameter ...
santosh kumar
santosh_ess2002
Offline Send Email
Mar 21, 2005
6:02 am
1732
hi i have an tcp/ip server with DBI ::mysql database connection Its works perfectly, but after certain time ( sometimes hours, sometimes a day, sometimes...
Garcia
josegarciaju...
Offline Send Email
Mar 27, 2005
3:39 am
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
Messages 1706 - 1735 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