[28663] in Perl-Users-Digest
Perl-Users Digest, Issue: 10027 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Fri Dec 1 18:05:59 2006
Date: Fri, 1 Dec 2006 15:05:07 -0800 (PST)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Fri, 1 Dec 2006 Volume: 10 Number: 10027
Today's topics:
a quick regex question PamelaFoxcroft@gmail.com
a quick regex question PamelaFoxcroft@gmail.com
Re: a quick regex question (J.D. Baldwin)
Re: a quick regex question <john@castleamber.com>
Re: a quick regex question <wahab@chemie.uni-halle.de>
Re: Base64 MIME <john@castleamber.com>
Re: CGI parsing <noreply@gunnar.cc>
Connecting to SQL Server <Holleran.Kevin@gmail.com>
Re: Connecting to SQL Server <1usa@llenroc.ude.invalid>
PAR, PAR::Packer smueller@cpan.org
Re: PAR, PAR::Packer <john@castleamber.com>
Return Value from Background System Call goodcall1@hotmail.com
Re: Return Value from Background System Call <spamtrap@dot-app.org>
Re: Return Value from Background System Call goodcall1@hotmail.com
Re: Return Value from Background System Call <1usa@llenroc.ude.invalid>
Re: Return Value from Background System Call <glex_no-spam@qwest-spam-no.invalid>
Re: Return Value from Background System Call <spamtrap@dot-app.org>
Re: using DateTime object <clifton_francis@hotmail.com>
Re: using DateTime object <spamtrap@dot-app.org>
Re: using DateTime object <clifton_francis@hotmail.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: 1 Dec 2006 13:29:15 -0800
From: PamelaFoxcroft@gmail.com
Subject: a quick regex question
Message-Id: <1165008555.620509.217580@f1g2000cwa.googlegroups.com>
Hi, I want to find all occurences of a string where it looks like this
testword12345
So I have a word (actually 10 words) and I want to find all occurenece
of a any of these 10 words followed by 5 numbers.
Can anyone help me with this?
TIA
Pamela
------------------------------
Date: 1 Dec 2006 13:29:21 -0800
From: PamelaFoxcroft@gmail.com
Subject: a quick regex question
Message-Id: <1165008561.461702.217840@f1g2000cwa.googlegroups.com>
Hi, I want to find all occurences of a string where it looks like this
testword12345
So I have a word (actually 10 words) and I want to find all occurenece
of a any of these 10 words followed by 5 numbers.
Can anyone help me with this?
TIA
Pamela
------------------------------
Date: Fri, 1 Dec 2006 21:37:53 +0000 (UTC)
From: INVALID_SEE_SIG@example.com.invalid (J.D. Baldwin)
Subject: Re: a quick regex question
Message-Id: <ekq7bh$sfe$1@reader2.panix.com>
In the previous article, <PamelaFoxcroft@gmail.com> wrote:
> Hi, I want to find all occurences of a string where it looks like this
>
> testword12345
>
> So I have a word (actually 10 words) and I want to find all occurenece
> of a any of these 10 words followed by 5 numbers.
>
> Can anyone help me with this?
egrep '(wordone|wordtwo|wordthree|wordfour|etc)[0-9]{5}' foo.txt
Conversion to Perl non-obvious, depending on what you mean by "find."
--
_+_ From the catapult of |If anyone disagrees with any statement I make, I
_|70|___:)=}- J.D. Baldwin |am quite prepared not only to retract it, but also
\ / baldwin@panix.com|to deny under oath that I ever made it. -T. Lehrer
***~~~~-----------------------------------------------------------------------
------------------------------
Date: 1 Dec 2006 21:42:50 GMT
From: John Bokma <john@castleamber.com>
Subject: Re: a quick regex question
Message-Id: <Xns988C9FD8937ACcastleamber@130.133.1.4>
PamelaFoxcroft@gmail.com wrote:
> Hi, I want to find all occurences of a string where it looks like this
>
> testword12345
Now that would have been a better subject line, wouldn't it?
> So I have a word (actually 10 words) and I want to find all occurenece
> of a any of these 10 words followed by 5 numbers.
>
> Can anyone help me with this?
Sure, post your code, and some example data, and tell us which part
doesn't work.
--
John Experienced Perl programmer: http://castleamber.com/
Perl help, tutorials, and examples: http://johnbokma.com/perl/
------------------------------
Date: Fri, 01 Dec 2006 23:04:35 +0100
From: Mirco Wahab <wahab@chemie.uni-halle.de>
Subject: Re: a quick regex question
Message-Id: <ekq974$ov8$3@mlucom4.urz.uni-halle.de>
Thus spoke PamelaFoxcroft@gmail.com (on 2006-12-01 22:29):
> Hi, I want to find all occurences of a string where it looks like this
> testword12345
> So I have a word (actually 10 words) and I want to find all occurenece
> of a any of these 10 words followed by 5 numbers.
> Can anyone help me with this?
I'd like to see some initial trials that you did
before, as others have said.
BTW, the problem should be solvable
by organizing the search words into
a combined regular expression (alternation)
and a simple match of that beast against
your input data, like:
my @searchwords = qw'
George John Thomas James Andrew
Martin William John Zachary Millard';
my $combined = join '|', map "$_\\d{5}(?!\\d)", @searchwords;
print join "\n", map /($combined)/g, <>;
would you run this on some example data (through <>):
George12 John12345 Thomas234 James123
Andrew1234567 Martin010 William234
01234John 4Zachary43134 Millard1
it would show:
John12345
Zachary43134
Regards
M.
------------------------------
Date: 1 Dec 2006 20:35:20 GMT
From: John Bokma <john@castleamber.com>
Subject: Re: Base64 MIME
Message-Id: <Xns988C94675DC7Dcastleamber@130.133.1.4>
"Bigus" <bigus@abdcdefghijk.com> wrote:
> I am trying to convert a base64 encoded string in a plain text mailing
> list archive file back into a document. I extract the string form the
> file and then decode it like this:
>
> open DC, ">$path/$filename";
> print DC decode_base64($encoded);
> close DC;
>
> where $encoded is the base64 string.
>
> It creates the file, say a jpg or doc, of what looks like about the
> right size, but the images are corrupted. Is there anything obviously
> wrong with this?
Wild guess: perldoc -f binmode
--
John Experienced Perl programmer: http://castleamber.com/
Perl help, tutorials, and examples: http://johnbokma.com/perl/
------------------------------
Date: Fri, 01 Dec 2006 21:24:04 +0100
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: CGI parsing
Message-Id: <4tbhb7F132dp1U1@mid.individual.net>
Ben Morrow wrote:
> Quoth Gunnar Hjalmarsson:
>>Ben Morrow wrote:
>>>If you can do it *correctly* more efficiently than CGI.pm can,
>>
>>Of course I can; just did.
>>http://groups.google.com/group/comp.lang.perl.misc/msg/827b6bb5568885f3
>>
>>I.e. it does *correctly* what it's supposed to do. (It's not supposed to
>>handle e.g. multivalue fields or file uploads.)
>
> I'm not really competent to judge whether it's correct, not having read
> the CGI spec recently; as for 'more efficient', did you benchmark it?
Yes, several years ago.
> Can we see the results?
Sure.
http://groups.google.com/group/comp.lang.perl.misc/msg/d922a0fabe3ce436
>>Since there already are alternative CGI parsing modules, there is no
>>need to release another one.
>
> Then might I respectfully suggest that you point people at one of those,
> instead of encouraging them to cargo-cult CGI-parsing code that a lot of
> the time is either incorrect or not properly understood? It's hard
> enough to get beginning programmers to understand the value of
> modularity and code reuse as it is, without a whole lot of (almost
> certainly spurious) argument about the efficiency or otherwise of
> CGI.pm.
Spurious? BS! By making such a claim, without presenting any proofs,
your credibility is eroded.
If this _really_ was about the value of code reuse via modules, why does
nobody object to e.g. this message:
http://groups.google.com/group/comp.lang.perl.misc/msg/1b4d3a3b268bf35c
No, because people know and enjoy that TIMTOWTDI. But that philosophy
seems to not be applicable to the sacred cow CGI.pm. For some reason.
Understood only by those who were here 10 years ago.
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
------------------------------
Date: 1 Dec 2006 11:34:57 -0800
From: "K.J. 44" <Holleran.Kevin@gmail.com>
Subject: Connecting to SQL Server
Message-Id: <1165001697.378751.223670@l12g2000cwl.googlegroups.com>
What is the easiest way to connect to a SQL Server database? All I
want to do is pull data from one table and match it against some data
in a text file. All I need to do is run a simple select * from table
and then compare matched strings. I am used to connecting to databases
with PHP and VBScript for web development but this is my first attempt
using Perl (actually this is my first "useful" perl script)
Thanks for any help.
------------------------------
Date: Fri, 01 Dec 2006 20:18:25 GMT
From: "A. Sinan Unur" <1usa@llenroc.ude.invalid>
Subject: Re: Connecting to SQL Server
Message-Id: <Xns988C9BC636E85asu1cornelledu@127.0.0.1>
"K.J. 44" <Holleran.Kevin@gmail.com> wrote in
news:1165001697.378751.223670@l12g2000cwl.googlegroups.com:
> What is the easiest way to connect to a SQL Server database? All I
> want to do is pull data from one table and match it against some data
> in a text file. All I need to do is run a simple select * from table
> and then compare matched strings. I am used to connecting to databases
> with PHP and VBScript for web development but this is my first attempt
> using Perl (actually this is my first "useful" perl script)
perldoc DBI
Sinan
--
A. Sinan Unur <1usa@llenroc.ude.invalid>
(remove .invalid and reverse each component for email address)
comp.lang.perl.misc guidelines on the WWW:
http://augustmail.com/~tadmc/clpmisc/clpmisc_guidelines.html
------------------------------
Date: 1 Dec 2006 13:18:40 -0800
From: smueller@cpan.org
Subject: PAR, PAR::Packer
Message-Id: <1165007920.472720.280810@j72g2000cwa.googlegroups.com>
Hi comp.lang.perl.misc,
since people regularly ask about "compiling" Perl or, if they're a
little more educated about dynamic languages, about packaging Perl, I'm
quickly dropping by to announce that PAR will soon be split up into two
distributions.
The reason for this is that PAR has various use cases: One of those is
packaging applications and that feature requires a C build environment
to set up. Another use case is just using a .par file as a library to
load modules from. You wouldn't need a C compiler for that.
So, soon, there will be the PAR distribution itself and a separate
PAR-Packer distribution which contains the venerable "pp" utility for
packaging Perl applications. If questions about packaging Perl apps
arise, please don't just mention PAR but also PAR-Packer (or
PAR::Packer).
In fact, once I make a release, you will be able to install the pp
utility and thus PAR::Packer from the CPAN shell as
install pp
or, of course,
install PAR::Packer
Cheers,
Steffen
------------------------------
Date: 1 Dec 2006 21:41:29 GMT
From: John Bokma <john@castleamber.com>
Subject: Re: PAR, PAR::Packer
Message-Id: <Xns988C9F9E61E93castleamber@130.133.1.4>
smueller@cpan.org wrote:
> Hi comp.lang.perl.misc,
>
> since people regularly ask about "compiling" Perl or, if they're a
> little more educated about dynamic languages
Does being a dynamic language stop a language from being compiled? The
only thing I can see is that for some cases the compiler needs to be
included to do run time compilation :-D.
--
John Experienced Perl programmer: http://castleamber.com/
Perl help, tutorials, and examples: http://johnbokma.com/perl/
------------------------------
Date: 1 Dec 2006 12:53:44 -0800
From: goodcall1@hotmail.com
Subject: Return Value from Background System Call
Message-Id: <1165006423.983969.236180@j44g2000cwa.googlegroups.com>
Problem: I am having trouble figuring out why a system call in the
background *always* returns 0. Debian Linux Perl 5.8.7
What am I trying to do: I am trying to launch a browser from a perl/Tk
button and it always returns 0 (and hence prints the failed to open
browser message) whether or not the browser actually gets launched.
Here is some sample code:
my $browser = '/usr/bin/firefox';
my $url = 'http://www.google.ca';
my $return = system ("$browser \"$url\" &");
if (!$return) {
print "failed to open browser\n";
}
------------------------------
Date: Fri, 01 Dec 2006 16:03:44 -0500
From: Sherm Pendley <spamtrap@dot-app.org>
Subject: Re: Return Value from Background System Call
Message-Id: <m2lklr5nwv.fsf@Sherm-Pendleys-Computer.local>
goodcall1@hotmail.com writes:
> Problem: I am having trouble figuring out why a system call in the
> background *always* returns 0. Debian Linux Perl 5.8.7
>
> What am I trying to do: I am trying to launch a browser from a perl/Tk
> button and it always returns 0 (and hence prints the failed to open
> browser message)
As the docs for system() state, a return value of 0 does not indicate failure:
perldoc -f system
sherm--
--
Web Hosting by West Virginians, for West Virginians: http://wv-www.net
Cocoa programming in Perl: http://camelbones.sourceforge.net
------------------------------
Date: 1 Dec 2006 13:59:50 -0800
From: goodcall1@hotmail.com
Subject: Re: Return Value from Background System Call
Message-Id: <1165010390.369422.139190@j44g2000cwa.googlegroups.com>
Sherm Pendley wrote:
> goodcall1@hotmail.com writes:
>
> > Problem: I am having trouble figuring out why a system call in the
> > background *always* returns 0. Debian Linux Perl 5.8.7
> >
> > What am I trying to do: I am trying to launch a browser from a perl/Tk
> > button and it always returns 0 (and hence prints the failed to open
> > browser message)
>
> As the docs for system() state, a return value of 0 does not indicate failure:
>
> perldoc -f system
>
That is correct - 0 should indicate success - this is why I have if
(!$return) - i.e. for a non-zero return print the error message. The
problem is - no matter what happens a 0 *always* gets returned. I threw
in a false location of /usr/bin/firfox (note the e is missing) but a 0
gets returned (indicating success) but no window get launched obviously
as there is no such executable (firfox) on my system.
I beginning to wonder what the "success" indicator of 0 points to? Ok
- so I found this in the docs:
"The return value is the exit status of the program as returned by
the "wait" call. "
So I look up perldoc -f wait and see this:
"The status is returned in $?"
So - again checking $? gives a value of zero.
Let's start from the beginning and hopefully someone can answer one
specific question:
How do I launch a browser as a background process and *know* whether or
not it was launched?
Jack
------------------------------
Date: Fri, 01 Dec 2006 22:20:14 GMT
From: "A. Sinan Unur" <1usa@llenroc.ude.invalid>
Subject: Re: Return Value from Background System Call
Message-Id: <Xns988CB06D83434asu1cornelledu@127.0.0.1>
goodcall1@hotmail.com wrote in news:1165006423.983969.236180
@j44g2000cwa.googlegroups.com:
> Problem: I am having trouble figuring out why a system call in the
> background *always* returns 0. Debian Linux Perl 5.8.7
>
> What am I trying to do: I am trying to launch a browser from a perl/Tk
> button and it always returns 0 (and hence prints the failed to open
> browser message) whether or not the browser actually gets launched.
>
> Here is some sample code:
>
> my $browser = '/usr/bin/firefox';
> my $url = 'http://www.google.ca';
>
> my $return = system ("$browser \"$url\" &");
> if (!$return) {
> print "failed to open browser\n";
> }
>
The return code is telling you that the shell was correctly launched,
not if the shell succeeded in executing the command.
You might want to use a fork + exec and system(LIST) to avoid the shell.
#!/usr/bin/perl
use strict;
use warnings;
my $browser = 'D:/Program Files/Mozilla Firefox/firefox.exe';
my $url = 'http://www.yahoo.com/';
if ( defined ( my $pid = fork ) ) {
if ( $pid ) {
print "Exiting after 10 seconds\n";
sleep 10;
}
else {
unless ( exec $browser, $url ) {
warn "Failed to launch '$browser $url'\n";
}
else {
warn "Launched '$browser $url'\n";
}
}
}
else {
die "fork failed\n";
}
Sinan
--
A. Sinan Unur <1usa@llenroc.ude.invalid>
(remove .invalid and reverse each component for email address)
comp.lang.perl.misc guidelines on the WWW:
http://augustmail.com/~tadmc/clpmisc/clpmisc_guidelines.html
------------------------------
Date: Fri, 01 Dec 2006 16:31:12 -0600
From: "J. Gleixner" <glex_no-spam@qwest-spam-no.invalid>
Subject: Re: Return Value from Background System Call
Message-Id: <4570ad90$0$61929$815e3792@news.qwest.net>
Sherm Pendley wrote:
> goodcall1@hotmail.com writes:
>
>> Problem: I am having trouble figuring out why a system call in the
>> background *always* returns 0. Debian Linux Perl 5.8.7
>>
>> What am I trying to do: I am trying to launch a browser from a perl/Tk
>> button and it always returns 0 (and hence prints the failed to open
>> browser message)
>
> As the docs for system() state, a return value of 0 does not indicate failure:
>
> perldoc -f system
I think it's always 0 because the backgrounding of the process was
successful.
#!/usr/local/bin/perl
my $cmd = '/some/made/up/cmd';
print "Running $cmd\n";
$ret = system( $cmd );
print "ret=$ret\n"
print "Running $cmd &\n";
$ret = system( "$cmd &" );
print "ret=$ret\n";
Running /some/made/up/cmd
/some/made/up/cmd: not found
ret=-1
Running /some/made/up/cmd &
ret=0
You could redirect STDERR to a file, sleep for a couple of seconds, then
read the file for errors, or possibly if its size is > 0 bytes.
------------------------------
Date: Fri, 01 Dec 2006 17:35:15 -0500
From: Sherm Pendley <spamtrap@dot-app.org>
Subject: Re: Return Value from Background System Call
Message-Id: <m2bqmn5joc.fsf@Sherm-Pendleys-Computer.local>
goodcall1@hotmail.com writes:
> Sherm Pendley wrote:
>> goodcall1@hotmail.com writes:
>>
>> > Problem: I am having trouble figuring out why a system call in the
>> > background *always* returns 0. Debian Linux Perl 5.8.7
>> >
>> > What am I trying to do: I am trying to launch a browser from a perl/Tk
>> > button and it always returns 0 (and hence prints the failed to open
>> > browser message)
>>
>> As the docs for system() state, a return value of 0 does not indicate
>> failure:
>>
>> perldoc -f system
>>
>
> That is correct - 0 should indicate success
That's not what I said, although I'll admit the difference is subtle. The
fact that 0 does not indicate failure does not necessarily imply that it
always indicates success. All it means is that the system() call itself
succeeded, and that the launched app returned a 0 exit status.
The meaning of a 0 exit status has to be interpreted in the context of the
launched app. For many apps, a 0 exit status is used to indicate failure of
a different sort than a general failure to execute the app, such as bogus
arguments or malformed input files. This allows command "chains" such as
the following:
gcc -o foo foo.c && mv ./foo /usr/local/bin/foo
Also keep in mind that the exit status of a program is whatever value is
returned from exit() or main(). Since you're launching this app in the
background and it's still running, that's probably why you're getting all
zeroes - you can't get an exit status from an app until it actually exits.
> I beginning to wonder what the "success" indicator of 0 points to? Ok
> - so I found this in the docs:
>
> "The return value is the exit status of the program as returned by
> the "wait" call. "
The last sentence of that same paragraph says:
"Return value of -1 indicates a failure to start the program (inspect
$! for the reason)."
So you can easily check to see if firefox was successfully started, by
comparing the return value of system() with -1.
sherm--
--
Web Hosting by West Virginians, for West Virginians: http://wv-www.net
Cocoa programming in Perl: http://camelbones.sourceforge.net
------------------------------
Date: 1 Dec 2006 12:11:56 -0800
From: "aswad" <clifton_francis@hotmail.com>
Subject: Re: using DateTime object
Message-Id: <1165003916.568089.248950@f1g2000cwa.googlegroups.com>
Dr.Ruud wrote:
> Dr.Ruud schreef:
>
> > For ActivePerl on Windows, see the make-route as the last resort.
> > Just add the Winnipeg (and maybe the Roth) repositories to your ppm
> > and go from there.
> > Very convenient.
>
> But also consider this:
>
> "Getting Fed Up with ActiveState"
> http://www.perlmonks.org/?node_id=587162
>
> --
> Affijn, Ruud
>
> "Gewoon is een tijger."
Well thanks for all the different suggestions, but done have worked.
I'm surprised that this is so difficult. What is the difference between
ActiveState DateTime and DateTime from CPAN. If i already have the
DateTime module from ActiveState why can't i just use that?
------------------------------
Date: Fri, 01 Dec 2006 15:51:28 -0500
From: Sherm Pendley <spamtrap@dot-app.org>
Subject: Re: using DateTime object
Message-Id: <m2psb35ohb.fsf@Sherm-Pendleys-Computer.local>
"aswad" <clifton_francis@hotmail.com> writes:
> Dr.Ruud wrote:
>> Dr.Ruud schreef:
>>
>> > For ActivePerl on Windows, see the make-route as the last resort.
>> > Just add the Winnipeg (and maybe the Roth) repositories to your ppm
>> > and go from there.
>> > Very convenient.
>>
>> But also consider this:
>>
>> "Getting Fed Up with ActiveState"
>> http://www.perlmonks.org/?node_id=587162
>>
>> --
>> Affijn, Ruud
>>
>> "Gewoon is een tijger."
>
> Well thanks for all the different suggestions, but done have worked.
> I'm surprised that this is so difficult. What is the difference between
> ActiveState DateTime and DateTime from CPAN.
You're confusing two completely separate issues here.
Package names are *very* relevant. ActiveState::DateTime is not the same
module as DateTime. The differences in the two are not at all related to the
means used to install them.
PPM and CPAN are simply two different installation mechanisms. The procedure
for using them to install modules differs, but once the DateTime module has
been installed, the means you used to install it makes zero different in how
it's used in your scripts.
> If i already have the
> DateTime module from ActiveState
You don't. You have the ActiveState::DateTime module, not the DateTime module.
Package names are important!
> why can't i just use that?
Maybe you can. Have you read the docs for ActiveState::DateTime to see if
it will do what you want to do?
sherm--
--
Web Hosting by West Virginians, for West Virginians: http://wv-www.net
Cocoa programming in Perl: http://camelbones.sourceforge.net
------------------------------
Date: 1 Dec 2006 14:54:28 -0800
From: "aswad" <clifton_francis@hotmail.com>
Subject: Re: using DateTime object
Message-Id: <1165013668.605573.237210@80g2000cwy.googlegroups.com>
Sherm Pendley wrote:
> "aswad" <clifton_francis@hotmail.com> writes:
>
> > Dr.Ruud wrote:
> >> Dr.Ruud schreef:
> >>
> >> > For ActivePerl on Windows, see the make-route as the last resort.
> >> > Just add the Winnipeg (and maybe the Roth) repositories to your ppm
> >> > and go from there.
> >> > Very convenient.
> >>
> >> But also consider this:
> >>
> >> "Getting Fed Up with ActiveState"
> >> http://www.perlmonks.org/?node_id=587162
> >>
> >> --
> >> Affijn, Ruud
> >>
> >> "Gewoon is een tijger."
> >
> > Well thanks for all the different suggestions, but done have worked.
> > I'm surprised that this is so difficult. What is the difference between
> > ActiveState DateTime and DateTime from CPAN.
>
> You're confusing two completely separate issues here.
>
> Package names are *very* relevant. ActiveState::DateTime is not the same
> module as DateTime. The differences in the two are not at all related to the
> means used to install them.
>
> PPM and CPAN are simply two different installation mechanisms. The procedure
> for using them to install modules differs, but once the DateTime module has
> been installed, the means you used to install it makes zero different in how
> it's used in your scripts.
>
> > If i already have the
> > DateTime module from ActiveState
>
> You don't. You have the ActiveState::DateTime module, not the DateTime module.
> Package names are important!
>
> > why can't i just use that?
>
> Maybe you can. Have you read the docs for ActiveState::DateTime to see if
> it will do what you want to do?
>
> sherm--
>
> --
> Web Hosting by West Virginians, for West Virginians: http://wv-www.net
> Cocoa programming in Perl: http://camelbones.sourceforge.net
Hi Sherm, thanks for the information. I took a look at the
documentation on the ActiveState web site. But couldn't find anything
on DateTime. Or maybe I wasn't looking under the right section.
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>
Administrivia:
#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc. For subscription or unsubscription requests, send
#the single line:
#
# subscribe perl-users
#or:
# unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.
NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.
#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V10 Issue 10027
****************************************