[23875] in Perl-Users-Digest
Perl-Users Digest, Issue: 6078 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Feb 4 14:05:53 2004
Date: Wed, 4 Feb 2004 11:05:09 -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 Wed, 4 Feb 2004 Volume: 10 Number: 6078
Today's topics:
Re: capturing a match <xx087@freenet.carleton.ca>
Re: CGI syntax error not behaving as I expected but... <xx087@freenet.carleton.ca>
Re: Checking to see if a paticular file exists <jwillmore@remove.adelphia.net>
Re: Checking to see if a paticular file exists (vijay)
Re: Clarifications <edgrsprj@ix.netcom.com>
Re: Clarifications <edgrsprj@ix.netcom.com>
Re: Clarifications <edgrsprj@ix.netcom.com>
Re: Clarifications <sbryce@scottbryce.com>
Re: Clarifications <edgrsprj@ix.netcom.com>
Re: Clarifications <usenet@morrow.me.uk>
how to find the last "new line" in string (hshen)
Re: how to find the last "new line" in string <perl@my-header.org>
Re: how to find the last "new line" in string <jill_krugman@yahoo.com>
Re: Looking for MD5-like fingerprint for JPG-files (Randal L. Schwartz)
Re: Looking for MD5-like fingerprint for JPG-files <ceo@nospan.on.net>
Re: Microsoft AD <ceo@nospan.on.net>
Need help reading a perl regexp - someone clue me? <dakidd@sonic.net>
Re: Need help reading a perl regexp - someone clue me? <noreply@gunnar.cc>
Re: newbie help <spam@spammer.com>
Re: newbie help <ceo@nospan.on.net>
Re: newbie help <noreply@gunnar.cc>
Re: newbie help <jwillmore@remove.adelphia.net>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: 3 Feb 2004 20:03:25 GMT
From: Glenn Jackman <xx087@freenet.carleton.ca>
Subject: Re: capturing a match
Message-Id: <slrnc1vvkd.6pv.xx087@smeagol.ncf.ca>
David K. Wall <dwall@fastmail.fm> wrote:
> Chris <c.cole@umist.ac.uk> wrote:
> > profs/pr00001.clean:Query id = asni00107
[...]
> > profs/pr00010.clean:Query id = asni00116
> >
> > From this list I need the 'pr000??' data and the 'asni00??' data
> > from each line.
>
> grep ... | perl -ne 'print "$2=$1\n" if m{^\S+/(pr\d+)\S+ id = (asni\d+)$}'
or use -p instead of -n
grep ... | perl -pe 's/^.*(pr\d+).*(asni\d+).*/$2=$1/'
why use grep at all?
perl -lne 'next unless /^.*(pr\d+).*(asni\d+).*/; print "$2=$1"' input
--
Glenn Jackman
NCF Sysadmin
glennj@ncf.ca
------------------------------
Date: 3 Feb 2004 15:34:51 GMT
From: Glenn Jackman <xx087@freenet.carleton.ca>
Subject: Re: CGI syntax error not behaving as I expected but...
Message-Id: <slrnc1vfsr.6pv.xx087@smeagol.ncf.ca>
Ben Morrow <usenet@morrow.me.uk> wrote:
>
> mmosher <mmosher@storm.ca> wrote:
> > elsif (substr($date_time_raw[$loop],8,2)=12) {##do something}
> >
> > My question is this: I thought a syntax error of this type would not run
> > and that I would get an error with no output? Or is this type of error
> > considered a warning?
>
> Using substr as an lvalue like this is perfectly valid Perl. Read
> perldoc -f substr again.
This is precisely why you might see some (particularly C code) written
like:
if (1 == someVar) {...}
because the typo
if (1 = someVar) {...}
_would_ trigger an error.
--
Glenn Jackman
NCF Sysadmin
glennj@ncf.ca
------------------------------
Date: Wed, 04 Feb 2004 13:31:44 -0500
From: James Willmore <jwillmore@remove.adelphia.net>
Subject: Re: Checking to see if a paticular file exists
Message-Id: <pan.2004.02.04.18.31.43.36523@remove.adelphia.net>
On Tue, 03 Feb 2004 11:46:13 -0800, vijay wrote:
> Hi
> I'm sorry i should have posted the code
> __________________________________________________
> require "cgi-lib.pl";
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Please tell me this is something *you* wrote and not the old Perl4 CGI
library ......
If it's the latter, *please* consider using the CGI module .....
--
Jim
Copyright notice: all code written by the author in this post is
released under the GPL. http://www.gnu.org/licenses/gpl.txt
for more information.
a fortune quote ...
"We are upping our standards ... so up yours." -- Pat Paulsen
<for President, 1988.
------------------------------
Date: 4 Feb 2004 10:49:39 -0800
From: vijaysenthilv@yahoo.com (vijay)
Subject: Re: Checking to see if a paticular file exists
Message-Id: <8fec0185.0402041049.7e595fa4@posting.google.com>
"gnari" <gnari@simnet.is> wrote in message news:<bvp1ni$14i$1@news.simnet.is>...
> "vijay" <vijaysenthilv@yahoo.com> wrote in message
> news:8fec0185.0402031146.5e8f1bcf@posting.google.com...
>
> > require "cgi-lib.pl";
> > print "Content-type: text/html\n\n";
>
> I am not going to mention strict, warnings and CGI.pm now,
> but I might next time.
>
> > ...
> > if (!(-e 'J:\DWGS\parking\LOT-10.dwg')) {
> > ...
> > if (!(-e 'J:\DWGS\Project Archive\911-001-1922-A-002-AB.pdf')) {
> > ...
> > i Did try using the %20 and forward slash format but that didnt help
> > either
>
> the %20 does not apply in your case.
>
> does the problem go away if you rename away the space ?
Yes it does go away
> does the first filepath fail if you rename a space into it?
Yes it fails
>
> maybe it is a permission problem. the user executing the script
> as cgi is not the same as the one in the shell. and their environments
> differ as well.
I get a invalid Argument error when i try to opendir command on
directories with space in their file name.I guess its a CGI error than
something to deal with perl, i'll try searching CGI sites to see if i
can come up with a fix
Thanks
Vijay
>
> gnari
------------------------------
Date: Wed, 04 Feb 2004 16:39:18 GMT
From: "edgrsprj" <edgrsprj@ix.netcom.com>
Subject: Re: Clarifications
Message-Id: <We9Ub.10320$GO6.6351@newsread3.news.atl.earthlink.net>
"John W. Kennedy" <jwkenne@attglobal.net> wrote in message
news:DjkTb.37592$gw3.14401190@news4.srv.hcvlny.cv.net...
> In general, Ruby runs slower than non-OO Perl, and probably always will,
> but in more advanced cases Ruby can be faster. (My perfect-number
> generator is a lot faster in Ruby than Perl, though it's fastest in
GCLISP.)
>
I would have to check on those execution speed differences though I would
expect that they might not be important for the applications that I have in
mind.
Do you know if Ruby will generate code which can be used for CGI programs at
Web sites? That is another feature that made Perl look attractive.
------------------------------
Date: Wed, 04 Feb 2004 16:54:57 GMT
From: "edgrsprj" <edgrsprj@ix.netcom.com>
Subject: Re: Clarifications
Message-Id: <Bt9Ub.10338$GO6.7969@newsread3.news.atl.earthlink.net>
"Brad Baxter" <bmb@ginger.libs.uga.edu> wrote in message
news:Pine.A41.4.58.0402021311110.21724@ginger.libs.uga.edu...
> On Sun, 1 Feb 2004, edgrsprj wrote:
> Not if you give them "codes" that are syntax errors:
>
> open FILENAME “> c:/textfile.txt”;
>
I have a third browser that I am going to have to try in order to examine
the statements on that page. Your post makes it appear that for some reason
they are not displaying correctly with certain browsers. Perhaps they will
need to be stored there with a preformatted text format.
------------------------------
Date: Wed, 04 Feb 2004 17:01:15 GMT
From: "edgrsprj" <edgrsprj@ix.netcom.com>
Subject: Re: Clarifications
Message-Id: <vz9Ub.10340$GO6.10298@newsread3.news.atl.earthlink.net>
"Michele Dondi" <bik.mido@tiscalinet.it> wrote in message
news:neet10tpdpp5ohphoarndvivadu0mkc2qg@4ax.com...
> On Sun, 01 Feb 2004 00:55:25 GMT, "edgrsprj" <edgrsprj@ix.netcom.com>
> I would tend to disagree with your claim! I am *not* a professional
> computer programmer and once I happened to try and see if Perl may
> have been useful for my purposes, that BTW were to do some arithmetic
> computations and (on a completely unrelated basis) off-line HTML
> generation, and I found that indeed it was. Still programming in Perl
> since then...
>
I have been developing computer programs in a number of languages for quite
a few years. And it usually does not take me too long to shift from one to
another for simple applications. But I found it to be difficult to get
started with Perl and still have quite a bit to learn. And my feeling is
that if I could not learn it right away with all of my programming
experience then many other people would probably have trouble. I am not
saying that it is not a good language but only that it does not appear to be
one where you can install it and then never having seen it before just sit
down and immediately start writing simple programs which will open and close
files etc.
------------------------------
Date: Wed, 04 Feb 2004 10:18:46 -0700
From: Scott Bryce <sbryce@scottbryce.com>
Subject: Re: Clarifications
Message-Id: <1022abns6vvor8d@corp.supernews.com>
edgrsprj wrote:
> I have been developing computer programs in a number of languages for quite
> a few years. And it usually does not take me too long to shift from one to
> another for simple applications. But I found it to be difficult to get
> started with Perl and still have quite a bit to learn.
Has anyone suggested the llama book? That might be the fastest way to
learn the language. Some might argue that with your background in
programing that the llama book is a bit slow, but I have been
programming in higher level languages for years, and I found the llama
book useful as I started using Perl.
------------------------------
Date: Wed, 04 Feb 2004 18:03:16 GMT
From: "edgrsprj" <edgrsprj@ix.netcom.com>
Subject: Re: Clarifications
Message-Id: <EtaUb.10442$GO6.8857@newsread3.news.atl.earthlink.net>
"Scott Bryce" <sbryce@scottbryce.com> wrote in message
news:1022abns6vvor8d@corp.supernews.com...
> edgrsprj wrote:
>
Thanks for the information. The main thing that I want to do right now in
order to make a decision regarding whether to use Perl or some other
language is to determine how well it can control Windows program screen
operations. If it is too difficult I will probably try to find some other
language to use.
------------------------------
Date: Wed, 4 Feb 2004 19:03:45 +0000 (UTC)
From: Ben Morrow <usenet@morrow.me.uk>
Subject: Re: Clarifications
Message-Id: <bvrfmh$rn$1@wisteria.csv.warwick.ac.uk>
"edgrsprj" <edgrsprj@ix.netcom.com> wrote:
> Thanks for the information. The main thing that I want to do right now in
> order to make a decision regarding whether to use Perl or some other
> language is to determine how well it can control Windows program screen
> operations. If it is too difficult I will probably try to find some other
> language to use.
You have had this answer: it can be done but it is difficult. You
would be better off using VBscript and cscript.exe. Now go away.
Ben
--
"The Earth is degenerating these days. Bribery and corruption abound.
Children no longer mind their parents, every man wants to write a book,
and it is evident that the end of the world is fast approaching."
-Assyrian stone tablet, c.2800 BC ben@morrow.me.uk
------------------------------
Date: 4 Feb 2004 09:59:52 -0800
From: hshen_1998@yahoo.com (hshen)
Subject: how to find the last "new line" in string
Message-Id: <d40b8853.0402040959.6d1cfba4@posting.google.com>
Hi,
If a string contains a few lines, (separated by '\n'), how can I make
a regular expression to replace this '\n' by a space?
Thanks!
------------------------------
Date: Wed, 04 Feb 2004 19:17:29 +0100
From: Matija Papec <perl@my-header.org>
Subject: Re: how to find the last "new line" in string
Message-Id: <cmd220t0g50kjvt0u6e5efhvrufvlubj8j@4ax.com>
X-Ftn-To: hshen
hshen_1998@yahoo.com (hshen) wrote:
>Hi,
>If a string contains a few lines, (separated by '\n'), how can I make
>a regular expression to replace this '\n' by a space?
s/\n$/ /;
this is only for last newline
--
Matija
------------------------------
Date: Wed, 4 Feb 2004 18:40:58 +0000 (UTC)
From: J Krugman <jill_krugman@yahoo.com>
Subject: Re: how to find the last "new line" in string
Message-Id: <bvrebq$k1j$1@reader2.panix.com>
In <d40b8853.0402040959.6d1cfba4@posting.google.com> hshen_1998@yahoo.com (hshen) writes:
>Hi,
>If a string contains a few lines, (separated by '\n'), how can I make
>a regular expression to replace this '\n' by a space?
This will work even if the string doesn't end in a newline:
s/^(.*)\n/$1 /s
or
s/\n(?=[^\n]*$)/ /
jill
------------------------------
Date: Wed, 04 Feb 2004 16:07:58 GMT
From: merlyn@stonehenge.com (Randal L. Schwartz)
Subject: Re: Looking for MD5-like fingerprint for JPG-files
Message-Id: <4bc2a0b545bf1baf5f016b01532a014b@news.teranews.com>
>>>>> "A" == A Sinan Unur <1usa@llenroc.ude> writes:
A> OTOH, I know there is research in this area. Google is your friend.
A> http://www.linux-mag.com/2003-08/perl_01.html
Heh. I was just going to suggest my colum, although for many reasons
I'd direct the user over here:
<http://www.stonehenge.com/merlyn/LinuxMag/col50.html>
print "Just another Perl column hacker,"
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!
------------------------------
Date: Wed, 04 Feb 2004 18:29:28 GMT
From: Chris <ceo@nospan.on.net>
Subject: Re: Looking for MD5-like fingerprint for JPG-files
Message-Id: <cSaUb.32023$8r6.5358@newssvr33.news.prodigy.com>
Randal L. Schwartz wrote:
>>>>>>"A" == A Sinan Unur <1usa@llenroc.ude> writes:
>
>
> A> OTOH, I know there is research in this area. Google is your friend.
>
> A> http://www.linux-mag.com/2003-08/perl_01.html
>
> Heh. I was just going to suggest my colum, although for many reasons
> I'd direct the user over here:
>
> <http://www.stonehenge.com/merlyn/LinuxMag/col50.html>
>
> print "Just another Perl column hacker,"
>
Ewww. Beat to the punch, right from the horse's mouth... I was going
to suggest the same column. This question couldn't be a better fit for
your column. It was the first thing I thought of, which is funny
because when I read your column, I remember thinking, "Only Randal
Schwartz would ever want to do something like this ANYWAY..." And looky
here at this question... 8-)
Chris
-----
Chris Olive
chris -at- --spammers-are-vermen-- technologEase -dot- com
http://www.technologEase.com
(pronounced "technologies")
------------------------------
Date: Wed, 04 Feb 2004 17:56:36 GMT
From: Chris <ceo@nospan.on.net>
Subject: Re: Microsoft AD
Message-Id: <onaUb.32012$ui6.31047@newssvr33.news.prodigy.com>
stan.holmes@eskom.co.za wrote:
> Hi
> I know this is not a helpdesk, but I need to update an AD from a HR Oracle
> DB. The Oracle is not a problem, but I have no experience with MS AD. Can
> someone assist me with a web site or sample code on how to read and update
> the AD
> Thanks
> Stan
>
>
I hesitated answering this earlier this week because I would have
thought you'd get a more definitive answer than what I can give, but...
I *thought* that Win32::Lanman was going to be updated with new routines
that handled AD calls. Try looking at http://Jenda.Krynicky.cz/perl for
that. I used Win32::Lanman on a huge Perl scripting project at a
Fortune 50 company 2 years ago that had AD tie-ins through
Win32::Lanman, but full AD functionality wasn't there at that time.
For LDAP access, use Net::LDAP. Net::LDAP will allow you to work with
AD through its LDAP (port 389) interface.
Chris
-----
Chris Olive
chris -at- technologEase -dot- com
http://www.technologEase.com
(pronounced "technologies")
------------------------------
Date: Wed, 04 Feb 2004 17:32:16 GMT
From: Don Bruder <dakidd@sonic.net>
Subject: Need help reading a perl regexp - someone clue me?
Message-Id: <A0aUb.12559$XF6.244308@typhoon.sonic.net>
I've got a "canned" regexp I'm trying to analyze that I can't quite
follow due to one of the constructs used in it. Can anyone
translate/verify my translation for me?
Here's the segment that's throwing me (It's a very small sub-section of
a rather large and complex regexp - We're talking something on the order
of 300+ characters worth of "rather large and complex")
[a-zA-Z]{2}[.,\;:?%!&+^~`'\$*=\#|013467\(\)\[\]\{\}<>"][a-zA-Z]{2}
Now, if I'm reading rightly, and I'm not totally hopeless as far as my
understanding of perl regexps goes, this should be looking to match "any
two letters followed by pretty much any punctuation mark (including
parens, braces, and brackets of all flavors, but (seemingly) excluding
the "bar" (AKA "OR") character) or any of the digits 0, 1, 3, 4, 6, or
7, followed by any two letters.
How far off base am I with that interpretation?
Should I be ignoring any usual "special meaning" of the 'bar' character
when it appears as part of a square-bracketed set, and therefore taking
the overall regexp to mean that the "bar" character *IS NOT* being
excluded or used in its "special" capacity?
--
Don Bruder - dakidd@sonic.net <--- Preferred Email - SpamAssassinated.
Hate SPAM? See <http://www.spamassassin.org> for some seriously great info.
I will choose a path that's clear: I will choose Free Will! - N. Peart
Fly trap info pages: <http://www.sonic.net/~dakidd/Horses/FlyTrap/index.html>
------------------------------
Date: Wed, 04 Feb 2004 19:22:46 +0100
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: Need help reading a perl regexp - someone clue me?
Message-Id: <bvrd6r$vlosl$1@ID-184292.news.uni-berlin.de>
Don Bruder wrote:
>
> [a-zA-Z]{2}[.,\;:?%!&+^~`'\$*=\#|013467\(\)\[\]\{\}<>"][a-zA-Z]{2}
<snip>
> Should I be ignoring any usual "special meaning" of the 'bar'
> character when it appears as part of a square-bracketed set, and
> therefore taking the overall regexp to mean that the "bar"
> character *IS NOT* being excluded or used in its "special"
> capacity?
What happened when you tested it?
What you are calling a "sqare-bracketed set" is a character class, and
the answer is yes.
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
------------------------------
Date: Wed, 4 Feb 2004 11:05:06 -0600
From: "Ram" <spam@spammer.com>
Subject: Re: newbie help
Message-Id: <bvr8mb$jaj$1@grandcanyon.binc.net>
This string does not match if <ordsts> and </ordsts> has child tags spread
across multiple lines.
If I stick this to the end of file, it does not match:
<ordsts>
<gname>
</gname>
</ordsts>
But it matches:
<ordsts> <gname> </gname> </ordsts>
For my case, it should match the both, including the child tags.
Thanks!!
"Gunnar Hjalmarsson" <noreply@gunnar.cc> wrote in message
news:bvp3d5$ujeo2$1@ID-184292.news.uni-berlin.de...
> Ram wrote:
> > How do I search for just the ordsts start(<ordsts>) and end
> > tags(</ordsts>) and the data between them, and get just the last
> > matched one.
>
> Assuming the data is in $_:
>
> my ($lastmatch) = /.*(<ordsts>.*<\/ordsts>).*/s;
>
> > Also would need an idea of how to get the last two matches.
>
> I leave that as an excercise to you. :)
>
> > Thanks for the pointers.
>
> http://www.perldoc.com/perl5.8.0/pod/perlre.html
>
> --
> Gunnar Hjalmarsson
> Email: http://www.gunnar.cc/cgi-bin/contact.pl
>
------------------------------
Date: Wed, 04 Feb 2004 18:03:43 GMT
From: Chris <ceo@nospan.on.net>
Subject: Re: newbie help
Message-Id: <3uaUb.32014$Kn6.23964@newssvr33.news.prodigy.com>
Ram wrote:
> How do I search for just the ordsts start(<ordsts>) and end tags(</ordsts>)
> and the data between them, and get just the last matched one. Also would
> need an idea of how to get the last two matches.
>
> Thanks for the pointers.
>
> [snipped sample XML]
If this is XML, as it appears to be, you might do better parsing and get
better overall mileage from using XML::Simple or one of its close cousins.
(Wondering if this is the "Ram" that *I* know. If so, I hope you are
doing well.)
Chris
-----
Chris Olive
chris -at- technologEase -dot- com
http://www.technologEase.com
(pronounced "technologies")
------------------------------
Date: Wed, 04 Feb 2004 19:07:28 +0100
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: newbie help
Message-Id: <bvrca5$va7en$1@ID-184292.news.uni-berlin.de>
[ Please do not top post! ]
Ram wrote:
> Gunnar Hjalmarsson wrote:
>>
>> Assuming the data is in $_:
>>
>> my ($lastmatch) = /.*(<ordsts>.*<\/ordsts>).*/s;
>
> This string does not match if <ordsts> and </ordsts> has child
> tags spread across multiple lines.
It's not a string, it's a regular expression, and it does match over
multiple lines.
> If I stick this to the end of file, it does not match:
> <ordsts>
> <gname>
> </gname>
> </ordsts>
> But it matches:
> <ordsts> <gname> </gname> </ordsts>
Would you mind showing us the code you used to end up to that conclusion?
> For my case, it should match the both, including the child tags.
And my suggestion does that perfectly well.
Have you began to study perldoc perlre yet? You'd better do so right
away, and don't forget to read about the /s modifier.
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
------------------------------
Date: Wed, 04 Feb 2004 13:48:41 -0500
From: James Willmore <jwillmore@remove.adelphia.net>
Subject: Re: newbie help
Message-Id: <pan.2004.02.04.18.48.40.175883@remove.adelphia.net>
[please don't top post - reordered to proper format] On Wed, 04 Feb 2004
11:05:06 -0600, Ram wrote:
> "Gunnar Hjalmarsson" <noreply@gunnar.cc> wrote in message
> news:bvp3d5$ujeo2$1@ID-184292.news.uni-berlin.de...
>> Ram wrote:
>> > How do I search for just the ordsts start(<ordsts>) and end
>> > tags(</ordsts>) and the data between them, and get just the last
>> > matched one.
>>
>> Assuming the data is in $_:
>>
>> my ($lastmatch) = /.*(<ordsts>.*<\/ordsts>).*/s;
>>
>> > Also would need an idea of how to get the last two matches.
>>
>> I leave that as an excercise to you. :)
>>
>> > Thanks for the pointers.
>>
>> http://www.perldoc.com/perl5.8.0/pod/perlre.html
>>
>> --
>> Gunnar Hjalmarsson
>> Email: http://www.gunnar.cc/cgi-bin/contact.pl
>>
> This string does not match if <ordsts> and </ordsts> has child tags
> spread across multiple lines.
>
> If I stick this to the end of file, it does not match: <ordsts>
> <gname>
> </gname>
> </ordsts>
> But it matches:
> <ordsts> <gname> </gname> </ordsts>
>
> For my case, it should match the both, including the child tags.
I'd follow the suggestion offered by Chris Olive - use an XML module to
parse your data. It will save you lots of time and effort - and reduce
the amount of "mistakes" made in parsing. Right now, if someone changes
the format of the file, you'll have to go through a similar type exercise
again in the future.
Again, it's just a suggestion :-)
HTH
--
Jim
Copyright notice: all code written by the author in this post is
released under the GPL. http://www.gnu.org/licenses/gpl.txt
for more information.
a fortune quote ...
You never know how many friends you have until you rent a house
<on the beach.
------------------------------
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 6078
***************************************