> need any tips as to start perl programming , so if you could help i would
really appreciate it . Iam really good with batch file programming , anda
bit > of C++ so if any help could be shot this way i would make it worth
your while ;D
http://www.amazon.com/exec/obidos/tg/detail/-/0596001320/qid=
> I am having a hard time getting a regular expression to work the way i
want
> it to. Take the following text: bla bla bla (la la) bla bla (di da)
my ( $var1, $var2 ) = ( $1, $2 ) if /$inputstring =~ m/bla bla bla (la la)
bla bla (di da)
$1 gets la la
$2 gets di da
--
To unsubscribe, e-mail
On Tue, Jul 15, 2003 at 05:18:38PM +0200, Jose M.Herrera wrote:
> I use RedHat linux 7.3 and I have installed perl but when I try to use sockets
> appears these errors:
>
> Can't locate socket.pm in @INC (@INC contains: /usr/lib/perl5/5.6.1/i386-linux
> /usr/lib/perl5/5.6.1 /usr/lib/perl5/site_p
I use RedHat linux 7.3 and I have installed perl but when I try to use sockets
appears these errors:
Can't locate socket.pm in @INC (@INC contains: /usr/lib/perl5/5.6.1/i386-linux
/usr/lib/perl5/5.6.1 /usr/lib/perl5/site_perl/5.6.1/i386-linux
/usr/lib/perl5/site_perl/5.6.1 /usr/lib/perl5/site_p
hi, group,
just asking if anyone knows of plans to port perl to the palm platform.
thanks,
james
Nick Diel wrote:
> I am having a hard time getting a regular expression to work the way
> i want it to. Take the following text: bla bla bla (la la) bla bla
> (di da)
>
> I want to extract the la la to one variable and di da to antoher
> variable. What I have tried so far is using match variabl
Nick Diel wrote:
> I am having a hard time getting a regular expression to work the way
> i want it to. Take the following text: bla bla bla (la la) bla bla
> (di da)
>
> I want to extract the la la to one variable and di da to antoher
> variable. What I have tried so far is using match variabl
does the news server update more slowly then the mailing list?
I have not received any messages since 2pm EST.
Paul Kraus
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
"Kevin Lind" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I need a perl program that downloads and saves (Save Target As...) a list
of
> links given in a text file. For example, a text file will contain the
> following lines:
Look into LWP or the utility wget which already does t
I am having a hard time getting a regular expression to work the way i want
it to. Take the following text: bla bla bla (la la) bla bla (di da)
I want to extract the la la to one variable and di da to antoher variable.
What I have tried so far is using match variables, but so far I am only able
> We have a fairly simple redirect script a url is entered, and even tho
there are
> directions to not enter the "http://www"; sometimes we get it or
"http://";...
> what is the simplest method to extract just the domain name if a
> "http://www.somedomain_name.com"; or "http://somedomain_name.com";
ECTED]'
Subject: a perl program that downloads
I need a perl program that downloads and saves (Save Target As...) a list of
links given in a text file. For example, a text file will contain the
following lines:
<http://www.latimes.com/news/printedition/national/20030715/20030715A0
I need a perl program that downloads and saves (Save Target As...) a list of
links given in a text file. For example, a text file will contain the
following lines:
<http://www.latimes.com/news/printedition/national/20030715/20030715A01.pdf>
<http://www.latimes.com/news/printedition
Don't forget your semicolons. That always kills me :P
-Original Message-
From: Resume Maleck Mohamedhosen #Ref: 100124
[mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 15, 2003 8:45 AM
To: [EMAIL PROTECTED]
Subject: starting off
need any tips as to start perl programming , so if you could h
need any tips as to start perl programming , so if you could help i would really
appreciate it . Iam really good with batch file programming , anda bit of C++ so if
any help could be shot this way i would make it worth your while ;D
Hi Steve and all
THX, now the script works !
as you wrote in your second mail, this is at least a documentation bug !
best regards,
mikle
On Tuesday, July 15, 2003, at 05:01 PM, Steve Grazzini wrote:
On Tue, Jul 15, 2003 at 03:38:58PM +0200, Michael Kleis wrote:
i have a question regarding th
> Hi all,
Howdy
>
> I'm having a hard time finding how an http authentication
> works and how it could be used with a file containing the
> logins and pass I want the user's entry to be compared to.
>
Actual authentication Is done via the webserver say apache with htaccess
Your way is sort
Hello.
Don't know if it will be useful to you, but you can try CGI::Session or
Apache::Session modules
I read some about in www.cpan.org and found them very useful.
They create cookies to maintain a user's session. Users need to authenticate
via username and password. After that you can use the c
Hi all,
I'm having a hard time finding how an http authentication works and how
it could be used with a file containing the logins and pass I want the
user's entry to be compared to.
So in more details the present situation is:
- I have a file containing the logins and pass from some users
- I ha
On Tue, Jul 15, 2003 at 11:01:13AM -0400, Steve Grazzini wrote:
> Safe Signals
>
> Perl used to be fragile in that signals arriving at inopportune moments
> could corrupt Perl's internal state. Now Perl postpones handling of
> signals until it's safe (between opcodes).
>
> Th
On Jul 15, Hamish Whittal said:
>1) Keep a central 'repository' (a hash) of all errors that can be
>generated in all the different modules and pass the error to a function
>that decides what error to run.
That sounds like a good idea.
>package Common;
>
>sub ERRORSTRING {
>
>
On Tue, Jul 15, 2003 at 03:38:58PM +0200, Michael Kleis wrote:
> i have a question regarding the switch from perl 5.6 to perl 5.8 and the
> usage of fork and signal handlers.
>
> I have written a script (on a debian linux (sid) box, perl 5.6.1)
> that is using fork and a signal handler (if a CHLD
I can't answer this question outright, since I haven't had the pleasure of
working with AD as of yet, but here are a couple of resources to check.
There's a [EMAIL PROTECTED] mailing list specifically for W2k/NT
questions involving Perl. Also, get thee to a bookstore and buy Dave Roth's
Win32 Per
Hi all,
i have a question regarding the switch from perl 5.6 to perl 5.8 and the
usage of fork and signal handlers.
I have written a script (on a debian linux (sid) box, perl 5.6.1)
that is using fork and a signal handler (if a CHLD signal received some
cleanup function is called).
After updatin
From: Kevin Pfeiffer <[EMAIL PROTECTED]>
> In article <[EMAIL PROTECTED]>, Jenda Krynicky wrote:
>
> > From: [EMAIL PROTECTED]
> >> What I am trying to do is to take lines out of a file that are
> >> formatted like:
> >>
> >> SYSTEM="value1" DOMAIN="value2" etc.
> >>
> >> There are about 1000 li
Kristian Rink wrote:
> hello all,...
>
> ...being writing a small script which is supposed to read data from
> a telephone system connected to the serial port of my linux box.
> basically, all the script does by now is to detach from the terminal
> and lurk in the background, reading from a pipe f
Dear All,
How to extract users from a group in windows 2000 Active Directory?
Regards,
M.Rafi
DISCLAIMER:
The information in this message is confidential and may be legally privileged. It is
intended solely for the addressee. Access to this message by another person is not
John W. Krahn wrote:
> Peter Fleck wrote:
> >
> > I swear that some day I will understand references. In the
> > meantime...
> >
> > I wrote some perl that used a hash where each value was a
> > reference to an array. No problem. Here is the segment from
> > within a foreach loop that populates the
Victor Peinado wrote:
> Hi list,
>
> I have a bilingual dictionary in a file with the following format:
>
> word1:sense1 sense2 ... senseN
> word2:sense1 sense2 ... senseN
> ...
>
> I'm doing a simple script which looks for a word and returns all the
> possible translations. What's the faster (or t
hello all,...
...being writing a small script which is supposed to read data from
a telephone system connected to the serial port of my linux box.
basically, all the script does by now is to detach from the terminal
and lurk in the background, reading from a pipe filled by cat:
open(INPUT, "cat
Hi,
do you want the receiver to get the name instead the e-mail address??
if so it is possible
>From =>'$email($name)';
Anthony
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
In article <[EMAIL PROTECTED]>, Jenda Krynicky wrote:
> From: [EMAIL PROTECTED]
>> What I am trying to do is to take lines out of a file that are
>> formatted like:
>>
>> SYSTEM="value1" DOMAIN="value2" etc.
>>
>> There are about 1000 lines like that and what I need to do is to take
>> all of th
Hi ,
I got the answer Thanks
Please ignore the previous mail from me
rgds
rajeev
-Original Message-
From: Pandey Rajeev-A19514
Sent: Tuesday, July 15, 2003 3:20 PM
To: [EMAIL PROTECTED]
Subject: Socket Problem
Hi,
I have a problem with sockets that goes like this..
I want to create
Hi,
I have a problem with sockets that goes like this..
I want to create a socket and then want to use it at a later time to send messages..
How do I save sockets .? It seems that I can not save "S". S is a constant ... I dont
know what wrong am I doing..
Can some one help me ? I need to cre
Well thankyou all for the replies. (This must be one of the best lists I
subscribe to.)
Now, why I wanted to run the code each time I called the module...
I am wanting to do error checking within my code. I am experimenting
with the best ways to do this.
1) Keep a central 'repository' (a hash) of
35 matches
Mail list logo