[25448] in Perl-Users-Digest
Perl-Users Digest, Issue: 7693 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Jan 26 00:05:36 2005
Date: Tue, 25 Jan 2005 21: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 Tue, 25 Jan 2005 Volume: 10 Number: 7693
Today's topics:
Re: FAQ 6.17 Why don't word-boundary searches with "\b" <tadmc@augustmail.com>
Re: frames with perl? <tadmc@augustmail.com>
Re: frames with perl? <jurgenex@hotmail.com>
Re: Grep Text File for Lines Containing 1 or 2 Words <jl_post@hotmail.com>
Re: Grep Text File for Lines Containing 1 or 2 Words <tadmc@augustmail.com>
Re: Grep Text File for Lines Containing 1 or 2 Words <jc_va@hotmail.com>
Re: Grep Text File for Lines Containing 1 or 2 Words <tadmc@augustmail.com>
Re: Grep Text File for Lines Containing 1 or 2 Words <1usa@llenroc.ude.invalid>
Re: Grep Text File for Lines Containing 1 or 2 Words <groleau+news@freeshell.org>
HAVE YOU HEARD THE GOOD NEWS! google_groups_web@yahoo.com
Re: How to test for 'being run through require/do'? <karlUNDERSCOREkramsch@yahooPERIODcom.invalid>
mysql: doable? asdfkajsdflkjsadlfkjoewqifoeiwjf@yahoo.com
Re: mysql: doable? <jgibson@mail.arc.nasa.gov>
Re: mysql: doable? <tadmc@augustmail.com>
Re: mysql: doable? <nospam@bigpond.com>
Re: mysql: doable? <nospam@bigpond.com>
Re: need assistance with an inherited script that proce <tadmc@augustmail.com>
Re: Negative lookahead regex clarification needed <tadmc@augustmail.com>
Re: Negative lookahead regex clarification needed <news@chaos-net.de>
Re: Old tutorial - now corrected <tadmc@augustmail.com>
Re: Testing for postgres index <tadmc@augustmail.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Tue, 25 Jan 2005 18:40:05 -0600
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: FAQ 6.17 Why don't word-boundary searches with "\b" work for me?
Message-Id: <slrncvdpn5.5i2.tadmc@magna.augustmail.com>
Peter Scott <peter@PSDT.com> wrote:
> In article <ct39o5$an5$1@reader2.panix.com>,
> PerlFAQ Server <comdog@panix.com> writes:
>
>>6.17: Why don't word-boundary searches with "\b" work for me?
>>
>> Two common misconceptions are that "\b" is a synonym for "\s+" and that
>> it's the edge between whitespace characters and non-whitespace
>> characters. Neither is correct. "\b" is the place between a "\w"
>> character and a "\W" character (that is, "\b" is the edge of a "word").
>
> That seems unnecessarily misleading. /\b is \b/x matches "is" without
> any \W characters in sight.
All that's needed to fix it is to add the caveat that is
given at the end of what is in
>> perlre describes the
>> behavior of all the regex metacharacters.
there. :-)
A word boundary (C<\b>) is a spot between two characters
that has a C<\w> on one side of it and a C<\W> on the other side
of it (in either order), counting the imaginary characters off the
beginning and end of the string as matching a C<\W>.
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Tue, 25 Jan 2005 19:07:27 -0600
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: frames with perl?
Message-Id: <slrncvdraf.5i2.tadmc@magna.augustmail.com>
PHP2 <nospam@nospam.tv> wrote:
> can I create frame inside in total middle of document with Perl?
Yes.
> if yes,
> how?
By using the print() statement to make the correct output.
_What_ the correct output should be is not a Perl issue, so
this is not the place to ask about that part, ask in a
newsgroup that is somehow connected to web stuff.
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Wed, 26 Jan 2005 03:05:53 GMT
From: "Jürgen Exner" <jurgenex@hotmail.com>
Subject: Re: frames with perl?
Message-Id: <lODJd.12908$HT6.10322@trnddc04>
PHP2 wrote:
> can I create frame inside in total middle of document with Perl? if
> yes, how?
No that is not possible, because "Perl documents" (I guess you mean Perl
scripts?) don't have "frames".
If you are talking about HTML you may want to ask in a NG that actually
deals with HTML.
jue
------------------------------
Date: 25 Jan 2005 15:56:27 -0800
From: "jl_post@hotmail.com" <jl_post@hotmail.com>
Subject: Re: Grep Text File for Lines Containing 1 or 2 Words
Message-Id: <1106697387.361953.145760@f14g2000cwb.googlegroups.com>
Buck Turgidson wrote:
> Looking for help in writing a perl that will pull from a text
> file those lines containing one or two "words". I want to
> reject any line that contains more than 2 words (a sentence).
>
> Appreciate any help from text processing experts.
If by "words," you mean strings of non-whitespace characters, you
can try this simple program:
perl -ne "print unless split > 2" file.txt
(where file.txt is your text file that you want to pull lines from).
Hope this helps,
-- Jean-Luc
------------------------------
Date: Tue, 25 Jan 2005 19:11:53 -0600
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: Grep Text File for Lines Containing 1 or 2 Words
Message-Id: <slrncvdrip.5i2.tadmc@magna.augustmail.com>
Buck Turgidson <jc_va@hotmail.com> wrote:
> Looking for help in writing a perl that will pull from a text file those
> lines containing one or two "words". I want to reject any line that
> contains more than 2 words (a sentence).
>
> Appreciate any help from text processing experts.
Show us the code you have so far, and we will help you fix it.
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Tue, 25 Jan 2005 21:10:24 -0500
From: "Buck Turgidson" <jc_va@hotmail.com>
Subject: Re: Grep Text File for Lines Containing 1 or 2 Words
Message-Id: <m_CJd.95397$Jk5.73982@lakeread01>
awk 'NF && NF <= 2' FILENAME
"Tad McClellan" <tadmc@augustmail.com> wrote in message
news:slrncvdrip.5i2.tadmc@magna.augustmail.com...
> Buck Turgidson <jc_va@hotmail.com> wrote:
> > Looking for help in writing a perl that will pull from a text file those
> > lines containing one or two "words". I want to reject any line that
> > contains more than 2 words (a sentence).
> >
> > Appreciate any help from text processing experts.
>
>
> Show us the code you have so far, and we will help you fix it.
>
>
> --
> Tad McClellan SGML consulting
> tadmc@augustmail.com Perl programming
> Fort Worth, Texas
------------------------------
Date: Tue, 25 Jan 2005 20:54:51 -0600
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: Grep Text File for Lines Containing 1 or 2 Words
Message-Id: <slrncve1jr.5rv.tadmc@magna.augustmail.com>
[ Please do not top-post. Text rearranged into a sensible order ]
Buck Turgidson <jc_va@hotmail.com> wrote:
> "Tad McClellan" <tadmc@augustmail.com> wrote in message
> news:slrncvdrip.5i2.tadmc@magna.augustmail.com...
>> Buck Turgidson <jc_va@hotmail.com> wrote:
>> > Looking for help in writing a perl that will pull from a text file those
>> > lines containing one or two "words". I want to reject any line that
>> > contains more than 2 words (a sentence).
>> >
>> > Appreciate any help from text processing experts.
>>
>>
>> Show us the code you have so far, and we will help you fix it.
>>
> awk 'NF && NF <= 2' FILENAME
echo 'NF && NF <= 2' | a2p
#!/usr/local/bin/perl
eval 'exec /usr/local/bin/perl -S $0 ${1+"$@"}'
if $running_under_some_shell;
# this emulates #! processing on NIH machines.
# (remove #! line above if indigestible)
eval '$'.$1.'$2;' while $ARGV[0] =~ /^([A-Za-z_0-9]+=)(.*)/ && shift;
# process any FOO=bar switches
$[ = 1; # set array base to 1
while (<>) {
chomp; # strip record separator
@Fld = split(' ', $_, 9999);
print $_ if $#Fld && $#Fld <= 2;
}
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Wed, 26 Jan 2005 03:00:25 GMT
From: "A. Sinan Unur" <1usa@llenroc.ude.invalid>
Subject: Re: Grep Text File for Lines Containing 1 or 2 Words
Message-Id: <Xns95E9DFE72E2F0asu1cornelledu@127.0.0.1>
"Buck Turgidson" <jc_va@hotmail.com> wrote in
news:m_CJd.95397$Jk5.73982@lakeread01:
[ top-posting fixed. don't do that ]
> "Tad McClellan" <tadmc@augustmail.com> wrote in message
> news:slrncvdrip.5i2.tadmc@magna.augustmail.com...
>> Buck Turgidson <jc_va@hotmail.com> wrote:
>> > Looking for help in writing a perl that will pull from a text file
>> > those lines containing one or two "words". I want to reject any
>> > line that contains more than 2 words (a sentence).
>> >
>> > Appreciate any help from text processing experts.
>>
>>
>> Show us the code you have so far, and we will help you fix it.
>
> awk 'NF && NF <= 2' FILENAME
>
You seem not to realize that this group is about Perl.
Still, see
perldoc a2p
Sinan.
------------------------------
Date: Wed, 26 Jan 2005 00:00:36 -0500
From: Wes Groleau <groleau+news@freeshell.org>
Subject: Re: Grep Text File for Lines Containing 1 or 2 Words
Message-Id: <V-udncz1nfhpvmrcRVn-2Q@gbronline.com>
Buck Turgidson wrote:
> Looking for help in writing a perl that will pull from a text file those
> lines containing one or two "words". I want to reject any line that
> contains more than 2 words (a sentence).
>
> Appreciate any help from text processing experts.
print if (/^\W*\w+\W+\w+\W*$/);
Did I get that right? I'm not an expert.
Or you could write something just as short in awk, and
use 'a2p' to convert it into a page of unreadable perl.
Come to think of it, do you have to use perl?
perl is great, but it's not all there is to life.
Even egrep can do what you asked.
--
Wes Groleau
Expert, n. Someone who comes from out of town and shows slides.
------------------------------
Date: 25 Jan 2005 19:20:18 -0800
From: google_groups_web@yahoo.com
Subject: HAVE YOU HEARD THE GOOD NEWS!
Message-Id: <1106709618.526830.152980@c13g2000cwb.googlegroups.com>
Good News!
Do you know how simple it is to go to Heaven after this life has ended?
Some people believe that belonging to a local church, temple, mosque or
synagogue will get them to Heaven.
Others believe that water baptism, obeying the ten commandments or just
being a good person will get them to Heaven.
There are many other beliefs as well, but the good news about God's way
to Heaven is found in the Holy Bible.
The good news is that God came from Heaven to earth in the person of
Jesus Christ over 2000 years ago and died for our sins(misdeeds). He
was born in the land of Israel supernaturally to a virgin Jewish woman
named Mary. He lived a sinless life for thirty-three years and then
sacrificed His sinless blood and died on a cross to pay the death
penalty for our sins. After Jesus was placed in a tomb He rose from the
dead three days later as He said He would. The Holy Bible also tells us
that Jesus Christ ascended into Heaven and that all who accept Him as
their Lord and Saviour will live forever with Him in Heaven where there
is no more death, sorrow, sickness and pain.
The Bible says, "For the wages of sin is death, but the gift of God is
eternal life through Christ Jesus our Lord." (Romans 6:23)
This verse in the Bible says, "For ALL HAVE SINNED, and come short of
the glory of God." (Romans 3:23)
This verse says, "But God demonstrates his own love for us in this:
While we were still sinners, Christ died for us." (Romans 5:8)
In this passage the Bible clearly explains how simple it is to be saved
and on your way to Heaven, "For if you confess with your mouth, "Jesus
is Lord," and believe in your heart that God raised him from the dead,
you WILL BE SAVED." (Romans 10:9)
You can be saved right now and on your way to Heaven if you will open
your heart to Jesus and pray the following prayer:
Dear Jesus Christ, I want to be saved so that I can have a home in
Heaven when I die. I agree with You that I am a sinner.
I believe You love me and want to save me. I believe that You bled and
died on the cross to pay the penalty for my sins. I believe that You
rose from the dead. Please forgive my sins and come into my heart and
be my Lord and Saviour. Thank You Lord Jesus Christ for forgiving me
and saving me through Your merciful grace. Amen.
You are now a Christian if you said the prayer and allowed God to save
you. Welcome to the family of God.
Salvation is not a reward but a gift. The Bible says it this way, "For
it is by GRACE you have been SAVED, through FAITH and this not from
yourselves, it is the GIFT of God." (Ephesians 2:8)
Nothing in the world is more important than your eternal destiny.
The Bible says, "In Him(Jesus) we have redemption through His blood,
the forgiveness of sins..." (Ephesians 1:7)
If you have not yet made a decision to be saved, please do so now
before it is too late. The reason why it is so important to be saved
now is because you do not know exactly when you will die. You may die
prematurely in a traffic accident, terrorist attack or some other way
before you get another chance to be saved.
The Bible tells us that we will spend eternity in Heaven or a place of
eternal torment called Hell. It would be terrible to die and go to Hell
when all you have to do is accept Jesus Christ as your personal Lord
and Saviour.
Some people that have already made Jesus Christ their Lord and Saviour
worry about losing their salvation. The Bible teaches Christians that
we can never lose our salvation no matter what happens.
The Bible says it this way, "My dear children, I write this to you so
that you will not sin. But if anybody does sin, we have one who speaks
to the Father in our defense Jesus Christ, the Righteous One."
Yes my friend, Jesus Christ is able to save you and keep you saved.
Please tell your family and friends, thanks!
Have a great day!
Internet Evangelist R.L. Grossi
1. http://www.biblegateway.com << Free Online Bible
2. http://www.free-hoster.com/goodnews << Passion of the Christ
3. http://www.carm.org/cults/cultlist.htm << Beware Of Cults
4. http://www.equip.org/free/DH198.htm << About Hell
5. http://www.powertochange.com/questions/qna2.html << Is Jesus God?
------------------------------
Date: Wed, 26 Jan 2005 00:20:54 +0000 (UTC)
From: KKramsch <karlUNDERSCOREkramsch@yahooPERIODcom.invalid>
Subject: Re: How to test for 'being run through require/do'?
Message-Id: <ct6np6$bn7$1@reader1.panix.com>
Thanks!
jill
--
Sent from a spam-bucket account; I check it once in a blue moon. If
you still want to e-mail me, cut out the extension from my address,
and make the obvious substitutions on what's left.
------------------------------
Date: 25 Jan 2005 17:19:33 -0800
From: asdfkajsdflkjsadlfkjoewqifoeiwjf@yahoo.com
Subject: mysql: doable?
Message-Id: <1106702373.359465.298200@c13g2000cwb.googlegroups.com>
Hi
I have a database containing text entries, userid and a unique
increasing number.
I have the unique number and userid to one of these rows.
Is there any mysql commands that would let me select the previous and
next (based on the unique number) row for this same userid?..
Example, the database looks like:
row1|text1|userid1|1
row2|text2|userid2|2
row3|text3|userid3|6
row4|text4|userid1|10
row5|text5|userid2|12
row6|text6|userid2|16
row7|text7|userid1|20
row8|text8|userid1|25
row9|text9|userid1|28
Based on knowing the unique number being 20 and userid being "userid1",
I want the query to retrieve only row4, row7 and row8...
Hope it makes sense..
Thanks !
M
------------------------------
Date: Tue, 25 Jan 2005 17:27:47 -0800
From: Jim Gibson <jgibson@mail.arc.nasa.gov>
Subject: Re: mysql: doable?
Message-Id: <250120051727473449%jgibson@mail.arc.nasa.gov>
In article <1106702373.359465.298200@c13g2000cwb.googlegroups.com>,
<asdfkajsdflkjsadlfkjoewqifoeiwjf@yahoo.com> wrote:
> Hi
>
> I have a database containing text entries, userid and a unique
> increasing number.
[rest snipped]
There doesn't seem to be any Perl content to your question. Perhaps you
would be better off asking in a MySql or general SQL newsgroup.
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
------------------------------
Date: Tue, 25 Jan 2005 20:56:00 -0600
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: mysql: doable?
Message-Id: <slrncve1m0.5rv.tadmc@magna.augustmail.com>
asdfkajsdflkjsadlfkjoewqifoeiwjf@yahoo.com <asdfkajsdflkjsadlfkjoewqifoeiwjf@yahoo.com> wrote:
> Is there any mysql commands that would let me
This is the Perl newsgroup. We discuss Perl here.
They discuss mysql in some other newsgroup. Try there.
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Wed, 26 Jan 2005 13:34:14 +1000
From: Gregory Toomey <nospam@bigpond.com>
Subject: Re: mysql: doable?
Message-Id: <35ohdnF4pc3vsU1@individual.net>
asdfkajsdflkjsadlfkjoewqifoeiwjf@yahoo.com wrote:
> Hi
>
> I have a database containing text entries, userid and a unique
> increasing number.
>
Try asking at http://dbforums.com/ ; I think a usenet mysql newsgroup will
be live soon.
To answer your question
select * from table where key =? order by key asc limit 1;
select * from table where key =? order by key desc limit 1;
gtoomey
------------------------------
Date: Wed, 26 Jan 2005 13:35:44 +1000
From: Gregory Toomey <nospam@bigpond.com>
Subject: Re: mysql: doable?
Message-Id: <35ohghF4pc3vsU2@individual.net>
Gregory Toomey wrote:
Should be
select * from table where key > ? order by key asc limit 1;
select * from table where key < ? order by key desc limit 1;
------------------------------
Date: Tue, 25 Jan 2005 19:26:42 -0600
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: need assistance with an inherited script that process email
Message-Id: <slrncvdsei.5i2.tadmc@magna.augustmail.com>
catcher39@www.com <catcher39@www.com> wrote:
> open IFILE,"$ifile";
You should always, yes *always*, check the return value from open().
You should not use useless quotes, they are... well... useless.
open IFILE, $ifile or die "could not open '$ifile' $!";
> $fromaddr="PostMaster\@afts.com";
$fromaddr='PostMaster@afts.com';
> if(substr($_,0,3) eq "\@\@\@")
if(substr($_,0,3) eq '@@@')
You are going to wear out your backslash key prematurely!
> chomp($basename=substr($_,3,(length $_)-4));
> chomp($aname="/mnt/opserve/automail/ATTACH/" . $basename);
Why are you chomp()ing $aname when it cannot possibly end
with a newline?
> chomp($base="$aname.base64");
Why are you chomp()ing $base when it cannot possibly end
with a newline?
> system "cat $aname | /usr/bin/mimencode -o $base";
And a gratuitious Useless Use Of Cat to boot!
system "/usr/bin/mimencode -o $base <$aname";
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Tue, 25 Jan 2005 19:00:46 -0600
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: Negative lookahead regex clarification needed
Message-Id: <slrncvdqtu.5i2.tadmc@magna.augustmail.com>
shifty <shifty_MyU@yahoo.com> wrote:
> I think we have conflicting views on what a regex really
> is.
We must first further clarify what we mean when we say "regular expression".
Let's use "Regular Expression" for real mathematical regular expressions
as in a Formal Methods class, and use "regular expression" for pattern
matching in Perl.
(Perl's regexes have been modified so much that they no longer
meet the strict definition required to be called "regular".
)
> To me, a regex is a sentence or formula which expresses any number
> of meanings. Without the correct characters pattern (and/or placement)
> within the text (and/or string), you don't have a correct statement.
It is a lot easier to understand if we say it the way the
mathematics folks say it:
A Regular Expression describes a set of strings that conform
to a Regular Grammar.
If the string is in the set described by the regex, the
match "succeeds" (the string is in the language of the grammar),
else it "fails" (the string is not in the language).
> If you don't produce a correct statement because one or more characters
> are misplaced, is it a syntax error or a code error?
I still get the feeling that you don't have a handle on "semantics".
Syntax is dull and uninteresting, it's only purpose is to allow
the machine to understand the statement.
The interesting and useful part is when the machine assigns
some _meaning_ (semantic) to the understood statement and
carries out what was meant.
See how regexes are compiled into a state machine (usually):
How Regexes Work:
http://www.plover.com/~mjd/perl/Regex/
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: 26 Jan 2005 01:53:58 GMT
From: Martin Kissner <news@chaos-net.de>
Subject: Re: Negative lookahead regex clarification needed
Message-Id: <slrncvdu1m.qj.news@maki.homeunix.net>
shifty wrote :
>
>> Something is going to compile it. Every regex engine in existence
>> does that.
>
> I would guess they're never compiled - regexes are interpreted, eh?
> [...]
> My apologies. I think we have conflicting views on what a regex really
> is. To me, a regex is a sentence or formula which expresses any number
> of meanings. Without the correct characters pattern (and/or placement)
> within the text (and/or string), you don't have a correct statement.
>
> If you don't produce a correct statement because one or more characters
> are misplaced, is it a syntax error or a code error?
>
>> That's inconclusive, but since you didn't say what your spam filter
>> actually does with the regex, there's no way of telling.
>
> Thanks for your input, looking forward to clarification.
According to 'perldoc perlretut' regular expressions get evaluated and
compiled.
HTH
Martin
--
Epur Si Muove (Gallileo Gallilei)
------------------------------
Date: Tue, 25 Jan 2005 19:15:34 -0600
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: Old tutorial - now corrected
Message-Id: <slrncvdrpm.5i2.tadmc@magna.augustmail.com>
Binny V A <binnyva@hotmail.com> wrote:
> It was the subject of a few posts a couple of months ago -
> http://tinyurl.com/3l2t2
It has not been "corrected" as you claim.
There are several things pointed out earlier that have
not been incorporated.
Thanks for playing anyway.
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Tue, 25 Jan 2005 19:03:14 -0600
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: Testing for postgres index
Message-Id: <slrncvdr2i.5i2.tadmc@magna.augustmail.com>
Mr. M.J. Lush <mlush@hgmp.mrc.ac.uk> wrote:
Have you seen the Posting Guidelines that are posted here frequently?
> I posted in haste, I'm sorry.
Be extra cautious when you get upset
Count to ten before composing a followup when you are upset
This is recommended in all Usenet newsgroups. Here in clpmisc, most
flaming sub-threads are not about any feature of Perl at all! They
are most often for what was seen as a breach of netiquette. If you
have lurked for a bit, then you will know what is expected and won't
make such posts in the first place.
But if you get upset, wait a while before writing your followup. I
recommend waiting at least 30 minutes.
Count to ten after composing and before posting when you are upset
After you have written your followup, wait *another* 30 minutes
before committing yourself by posting it. You cannot take it back
once it has been said.
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
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 7693
***************************************