[20019] in Perl-Users-Digest
Perl-Users Digest, Issue: 2214 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Tue Nov 27 00:10:38 2001
Date: Mon, 26 Nov 2001 21:10:11 -0800 (PST)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <1006837811-v10-i2214@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Mon, 26 Nov 2001 Volume: 10 Number: 2214
Today's topics:
Newbie Help... <chrisw_63@hotmail.com>
Re: Newbie Help... <wyzelli@yahoo.com>
Re: Newbie Help... <tim@vegeta.ath.cx>
no autovivication for subs <joe+usenet@sunstarsys.com>
Re: Perl and Windows 2000 Service. <rereidy@indra.com>
Re: RTFM (was Re: A Perl Bug?) <jake@chaogic.com>
Re: RTFM (was Re: A Perl Bug?) (Lou Moran)
Re: RTFM (was Re: A Perl Bug?) <godzilla@stomp.stomp.tokyo>
Re: Top-posts <ahamm@programmer.net>
Re: Top-posts <bart.lateur@pandora.be>
Re: Top-posts <flavell@mail.cern.ch>
Re: Top-posts <flavell@mail.cern.ch>
Re: Top-posts <mcnuttj@dnps-linux1.telecom.missouri.edu>
Re: Top-posts <sheila@thinkspot.net>
Re: Top-posts <ahamm@programmer.net>
unblessed reference... <gabriel.bolano@ebay.sun.com>
Re: unblessed reference... (Damian James)
Re: unblessed reference... <comdog@panix.com>
Unix dictionary lookups in perl (Anthony Delorenzo)
Re: Unix dictionary lookups in perl <joe+usenet@sunstarsys.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Tue, 27 Nov 2001 03:39:12 GMT
From: Chris White <chrisw_63@hotmail.com>
Subject: Newbie Help...
Message-Id: <cv160uknnk6nj48lqkil5n5gp6i10t4htd@4ax.com>
Okay, yes, I'm a newbie to Perl and CGI. But I've had several years
of programming in other languages and I have a Perl book (IOW, I can
follow instructions!)
I am running a quick and dirty web site, and decided to test a Perl
script. My provider assures me Perl is set up to run scripts from my
cgi-bin directory. They run Apache on an up-to-date Redhat server. I
wrote a simple script to test everything:
#!/usr/local/bin/perl
# hello.pl -- my first perl script!
print "Content-type: text/html\n\n";
print <<"EOF";
<HTML> <HEAD>
<TITLE>Hello, world!</TITLE>
</HEAD> <BODY>
<H1>This don't work!</H1>
</BODY> </HTML>
EOF
Thats it. It doesn't run! I know the server sees it, because the
first error I got was Not Authorized. Seems when I upload the default
permissions are too high, so I set them correctly and now I get:
Internal Server Error
The server encountered an internal error or misconfiguration and was
unable to complete your request.
A note to my provider revealed that, yes, they believe everything's
set up, and they said that this error is probably the result of an
error in my program. The program seems too simple to be in error, and
its directly out of the book. Oh, they also confirmed my path to Perl
was correct.
okay, go ahead. Tell me I'm stupid. Flame the newbie. Fill my In
Box and this news group with derision. Just, please, tell me what I
did wrong?!?!
Thanks
------------------------------
Date: Tue, 27 Nov 2001 13:23:41 +0930
From: "Wyzelli" <wyzelli@yahoo.com>
Subject: Re: Newbie Help...
Message-Id: <56EM7.17$HD3.315@vicpull1.telstra.net>
"Chris White" <chrisw_63@hotmail.com> wrote in message
news:cv160uknnk6nj48lqkil5n5gp6i10t4htd@4ax.com...
> Okay, yes, I'm a newbie to Perl and CGI. But I've had several years
> of programming in other languages and I have a Perl book (IOW, I can
> follow instructions!)
>
> I am running a quick and dirty web site, and decided to test a Perl
> script. My provider assures me Perl is set up to run scripts from my
> cgi-bin directory. They run Apache on an up-to-date Redhat server. I
> wrote a simple script to test everything:
>
> #!/usr/local/bin/perl
> # hello.pl -- my first perl script!
> print "Content-type: text/html\n\n";
> print <<"EOF";
> <HTML> <HEAD>
> <TITLE>Hello, world!</TITLE>
> </HEAD> <BODY>
> <H1>This don't work!</H1>
> </BODY> </HTML>
> EOF
>
> Thats it. It doesn't run! I know the server sees it, because the
> first error I got was Not Authorized. Seems when I upload the default
> permissions are too high, so I set them correctly and now I get:
>
> Internal Server Error
> The server encountered an internal error or misconfiguration and was
> unable to complete your request.
Are you certain there is a return after the end of the here-doc?
You should run with warnings enabled
#!/usr/local/bin/perl -w
If you use CGI::Carp you have have errors output to the browser.
use CGI::Carp qw(fatalsToBrowser);
Having said that, After ensuring a return after the last EOF, this works
fine on my server.
Wyzelli
--
@x='074117115116032097110111116104101114032080101114108032104097099107101114
'=~/(...)/g;
print chr for @x;
------------------------------
Date: Tue, 27 Nov 2001 04:09:39 GMT
From: Tim Hammerquist <tim@vegeta.ath.cx>
Subject: Re: Newbie Help...
Message-Id: <slrna064gl.f5d.tim@vegeta.ath.cx>
Chris White <chrisw_63@hotmail.com> graced us by uttering:
[ snip ]
> permissions are too high, so I set them correctly and now I get:
>
> Internal Server Error
> The server encountered an internal error or misconfiguration and was
> unable to complete your request.
>
> A note to my provider revealed that, yes, they believe everything's
> set up, and they said that this error is probably the result of an
> error in my program. The program seems too simple to be in error, and
> its directly out of the book. Oh, they also confirmed my path to Perl
> was correct.
Alright, as a veteran order-follower, have you checked
perldoc -q server
from the command line? There are (as of perl 5.6.1) 9 URLs to help
debug the most common problems with CGI scripts.
A quick checklist, however:
- What are the contents of the server's error log? you may
have to call your host to find out, but you don't seem to be
afraid to do so.
- I assume you use Win32 yourself. Does hello.pl have Win32 or
unix line endings? ie, do your lines end in CRLF or LF?
HTH
Tim Hammerquist
--
Microsoft's biggest and most dangerous contribution to the software
industry may be the degree to which it has lowered user expectations.
------------------------------
Date: 26 Nov 2001 19:07:11 -0500
From: Joe Schaefer <joe+usenet@sunstarsys.com>
Subject: no autovivication for subs
Message-Id: <m3elml5b68.fsf@mumonkan.sunstarsys.com>
Why don't the return values of perl subs autovivify?
% perl -wle ' sub f {$_} print f() -> [0] '
Can't use an undefined value as an ARRAY reference at -e line 1.
It doesn't even work for lvalued subs:
% perl -wle ' sub f:lvalue {$_} print f() -> [0] '
Can't use an undefined value as an ARRAY reference at -e line 1.
Can this feature be exploited in perl6 to control autovivication?
--
Joe Schaefer
------------------------------
Date: Mon, 26 Nov 2001 16:23:50 -0700
From: Ron Reidy <rereidy@indra.com>
Subject: Re: Perl and Windows 2000 Service.
Message-Id: <3C02CF06.35EF8184@indra.com>
Lou Moran wrote:
>
> On Mon, 26 Nov 2001 16:50:45 +0000 (UTC), "Bubba Frank"
> <bubba_1947@lycos.com> wrote wonderful things about sparkplugs:
>
> >I needed to convert this script into a Service on the server. So, following the
> >steps as described in http://www.perlguy.com/article/nt_service.html, which I
> >found, everything is set up.
> SNIP
> Try this:
>
> http://www.roth.net/perl/scripts/scripts.asp?DirMon.pl
>
> --
> TMTOWTDI: My way tends to be wrong...
> lmoran@wtsg.com
Also notice in this example, that messages are written to a file, not to
STDERR/STDOUT (I don't believe these file handles exist for a service).
--
Ron Reidy
Oracle DBA
Reidy Consulting, L.L.C.
------------------------------
Date: Mon, 26 Nov 2001 19:16:42 -0600
From: "Jake Fan" <jake@chaogic.com>
Subject: Re: RTFM (was Re: A Perl Bug?)
Message-Id: <9tupim$dc4$1@Masala.CC.UH.EDU>
Godzilla! <godzilla@stomp.stomp.tokyo> wrote:
> Ah... but you boys are the trolls. This is quite self-evident.
Ah... but you boys should call it GNU/Linux. This is quite self-evident.
Ah... but you Americans are evil. This is quite self-evident.
Ah... but Muslims are terrorists. This is quite self-evident.
Ah... but Jews are inferior. This is quite self-evident.
Ah... but Earth is flat. This is quite self-evident.
Ah... but I am God. This is quite self-evident.
#!/usr/bin/perl
sub AhBut
{
print "Ah... but $_[0]. This is quite self-evident.\n";
}
AhBut $ARGV[0];
------------------------------
Date: Tue, 27 Nov 2001 02:42:02 GMT
From: ellem@optonline.net (Lou Moran)
Subject: Re: RTFM (was Re: A Perl Bug?)
Message-Id: <ellem-2611012142020001@192.168.1.100>
In article <9tupim$dc4$1@Masala.CC.UH.EDU>, "Jake Fan" <jake@chaogic.com> wrote:
> Godzilla! <godzilla@stomp.stomp.tokyo> wrote:
>
> > Ah... but you boys are the trolls. This is quite self-evident.
>
> Ah... but you boys should call it GNU/Linux. This is quite self-evident.
> Ah... but you Americans are evil. This is quite self-evident.
> Ah... but Muslims are terrorists. This is quite self-evident.
> Ah... but Jews are inferior. This is quite self-evident.
> Ah... but Earth is flat. This is quite self-evident.
> Ah... but I am God. This is quite self-evident.
SNIP
You win. Weirdest Post Ever.
--
There's more than one way to do it, mine tend to be wrong
------------------------------
Date: Mon, 26 Nov 2001 19:58:36 -0800
From: "Godzilla!" <godzilla@stomp.stomp.tokyo>
Subject: Re: RTFM (was Re: A Perl Bug?)
Message-Id: <3C030F6C.491D4849@stomp.stomp.tokyo>
Lou Moran wrote:
> Jake Fan wrote:
> > Godzilla! wrote:
> > > Ah... but you boys are the trolls. This is quite self-evident.
> >
> > Ah... but you boys should call it GNU/Linux. This is quite self-evident.
> > Ah... but you Americans are evil. This is quite self-evident.
> > Ah... but Muslims are terrorists. This is quite self-evident.
> > Ah... but Jews are inferior. This is quite self-evident.
> > Ah... but Earth is flat. This is quite self-evident.
> > Ah... but I am God. This is quite self-evident.
> SNIP
> You win. Weirdest Post Ever.
Did I not say you boys are trolls? However, this moniker
"Lou Moran" is a bit more of a gracious troll than most.
I read his post as a classic example of the quality
of logic displayed by you boys; a classic example of
blowing smoke out of your arse.
Godzilla!
------------------------------
Date: Tue, 27 Nov 2001 11:14:19 +1100
From: "Andrew Hamm" <ahamm@programmer.net>
Subject: Re: Top-posts
Message-Id: <3c02dae4$1_2@news.iprimus.com.au>
Randal L. Schwartz wrote in message ...
>
>Just because a certain Redmond company put the default cursor ahead of
>the quoted text doesn't mean that this is a better way of doing
>things. Ask the people who have been involved in online communities
>longer than that company has been in existance.
>
Funny thing is, I could name a dozen people who *want* replies at the top
because it saves them the time of *finding* the replies. They claim this is
because they are busy people and if they are following a thread message by
message then the steadily sinking replies become harder to find.
But at least these people argue about it in a friendly manner without
stabbing any newbies ;-)
Regarding Outlook Express: Further annoyance is that the bl***** signature
is also put at the top. Double-shame on Bill's Soldiers for failing to place
the cursor at the end THEN injecting the signature and restoring the cursor
Just So.
--
Space Corps Directive #723
Terraformers are expressly forbidden from recreating Swindon.
-- Red Dwarf
------------------------------
Date: Tue, 27 Nov 2001 00:23:01 GMT
From: Bart Lateur <bart.lateur@pandora.be>
Subject: Re: Top-posts
Message-Id: <s2n50u0nv0jigqm08rlqbs9aopueqb1njo@4ax.com>
Andrew Hamm wrote:
>Funny thing is, I could name a dozen people who *want* replies at the top
>because it saves them the time of *finding* the replies. They claim this is
>because they are busy people and if they are following a thread message by
>message then the steadily sinking replies become harder to find.
In my mailer/newsreader, quotes are in a different color. It's easy to
skip them without even attempting to read them with hardly looking.
See how <group.google.com> does it. They use the same principle.
And if the quoted text become the majority, somebody forgot to use his
scissors appropriately.
--
Bart.
------------------------------
Date: Tue, 27 Nov 2001 02:51:37 +0100
From: "Alan J. Flavell" <flavell@mail.cern.ch>
Subject: Re: Top-posts
Message-Id: <Pine.LNX.4.30.0111270246250.9449-100000@lxplus023.cern.ch>
On Nov 26, Randal L. Schwartz inscribed on the eternal scroll:
> Just because a certain Redmond company put the default cursor ahead of
> the quoted text doesn't mean that this is a better way of doing
> things.
Oh, but it _is_ the better way of doing things! That's exactly where
the cursor needs to be so that the respondent can start snipping
extraneous quotage, in agreement with the long-standing rules of
netiquette.
(And I've seen those same rules of netiquette promoted over a
Microsoft copyright for use on Microsoft's own newsgroups. So it's
not only on Usenet that these same rules are laid down.)
Mind you, from what I've seen they make a total sow's ear of inserting
signatures.
cheers
------------------------------
Date: Tue, 27 Nov 2001 02:57:32 +0100
From: "Alan J. Flavell" <flavell@mail.cern.ch>
Subject: Re: Top-posts
Message-Id: <Pine.LNX.4.30.0111270252320.9449-100000@lxplus023.cern.ch>
On Nov 27, Andrew Hamm inscribed on the eternal scroll:
> Funny thing is, I could name a dozen people who *want* replies at the top
Cue nobull: "get real... this is a discussion group, not a help desk".
It's of only microscopic interest what the questioner wants in this
regard: it's what the countless other readers want that sets the
rules.
When you've promoted your deviant scheme on the appropriate news.*
groups, taken the votes, drafted the replacement RFC and so on, you'll
be ready to come back here and teach us all the new way of Usenetting.
Until then, the netiquette rules say what they say (and in my opinion
for excellent reasons), and you can keep your "dozen people" who
demand their instant gratification without any coherent discussion.
Now can we please get back to discussing Perl?
------------------------------
Date: 27 Nov 2001 01:28:50 GMT
From: <mcnuttj@dnps-linux1.telecom.missouri.edu>
Subject: Re: Top-posts
Message-Id: <9tuq8i$i39$1@dipsy.missouri.edu>
Alan J. Flavell <flavell@mail.cern.ch> wrote:
> On Nov 26, Randal L. Schwartz inscribed on the eternal scroll:
>> Just because a certain Redmond company put the default cursor ahead of
>> the quoted text doesn't mean that this is a better way of doing
>> things.
> Oh, but it _is_ the better way of doing things! That's exactly where
> the cursor needs to be so that the respondent can start snipping
> extraneous quotage, in agreement with the long-standing rules of
> netiquette.
> (And I've seen those same rules of netiquette promoted over a
> Microsoft copyright for use on Microsoft's own newsgroups. So it's
> not only on Usenet that these same rules are laid down.)
> Mind you, from what I've seen they make a total sow's ear of inserting
> signatures.
Actually, 'tin' and 'pine' both start the user off with the cursor at the
top just above all of the nicely quoted text. Signatures are placed
wherever the user spec's, and the default placement has varied from
version to version.
(I can't believe this even sounds like I'm defending Microsoft, but
attacking them *just because* they're Microsoft smacks of fanatacism to
me, and fanaticism is to be avoided...)
Perhaps someone could write a Perl module that would undo top-postings
and reorder (by >>> depth) the quoted text and... and...
Oh, never mind. :-) I just got visions of miles and miles of
*bottom*-posted articles. Replies with *all* of the reply at the bottom
are just as bad...
--J
--
"Yes, top-posting has it's place, but you seem to have misplaced it."
------------------------------
Date: Tue, 27 Nov 2001 02:43:50 GMT
From: Sheila King <sheila@thinkspot.net>
Subject: Re: Top-posts
Message-Id: <9tu25f.3vv5u8p.1@kserver.org>
On Tue, 27 Nov 2001 02:51:37 +0100, "Alan J. Flavell"
<flavell@mail.cern.ch> wrote in comp.lang.perl.misc in article
<Pine.LNX.4.30.0111270246250.9449-100000@lxplus023.cern.ch>:
:Oh, but it _is_ the better way of doing things! That's exactly where
:the cursor needs to be so that the respondent can start snipping
:extraneous quotage, in agreement with the long-standing rules of
:netiquette.
??? Surely, you jest.
It seems to me that it just makes it easier for those people to ignore
all the quoted material at the bottom and post full, unsnipped, quotes.
You are pulling our leg, right?
--
Sheila King
http://www.thinkspot.net/sheila/
http://www.k12groups.org/
------------------------------
Date: Tue, 27 Nov 2001 14:17:12 +1100
From: "Andrew Hamm" <ahamm@programmer.net>
Subject: Re: Top-posts
Message-Id: <3c0305ca$1_2@news.iprimus.com.au>
Alan J. Flavell wrote in message ...
>On Nov 27, Andrew Hamm inscribed on the eternal scroll:
>
>> Funny thing is, I could name a dozen people who *want* replies at the top
>
>Cue nobull: "get real... this is a discussion group, not a help desk".
>
>It's of only microscopic interest what the questioner wants in this
>regard: it's what the countless other readers want that sets the
>rules.
>
>When you've promoted your deviant scheme on the appropriate news
>[SNIP]
>
Not my deviant scheme - where did you see me *agree* with it? It's just an
observation. All my posts are trimmed with Q+A style
>Now can we please get back to discussing Perl?
>
Are you snapping at me? Had enough of this discussion perhaps? I see a few
happy responses from you - why snap now? Ahh, is it because I made some
sideways stabs about stabbing newbies? That's wasn't aimed at you in
particular, unless you are given to that action - I haven't checked out your
style.
Anyway, discussing posting style is a long usenet tradition.
--
Space Corps Directive #723
Terraformers are expressly forbidden from recreating Swindon.
-- Red Dwarf
------------------------------
Date: Mon, 26 Nov 2001 16:50:03 -0800
From: gabriel bolano <gabriel.bolano@ebay.sun.com>
Subject: unblessed reference...
Message-Id: <3C02E33B.3B7A2D0D@ebay.sun.com>
Hi all,
I am getting this error:
Cant call method "prepare" on unblessed refenece at common.lib line nnn,
etc...
The sub in common.lib
sub get_data{
my($sql, $Db) = @_;
print "sql=$sql db=$Db <br>\n";
my $sth = $Db->prepare($sql)
|| print "<br><br><font color=red>"
."Could not prepare sql statement with"
." <br>$SPACER Sql=$sql"
." <br>$SPACER caused err: $DBI::errstr </font>";
my $rc = $sth->execute()
|| print "<br><br><font color=red>"
."Could not execute sql statement with"
." <br>$SPACER Sql=$sql"
." <br>$SPACER caused err: $DBI::errstr </font><br>";
return ($sth->fetchall_arrayref());
} #end get_data
The call:
$str = 'select col1 from tab1';
$all_data = &get_data($str, $db_conn);
Any help would be greately appreciated
--
Gabriel Bolano
(510) 936-3559
------------------------------
Date: 27 Nov 2001 01:53:55 GMT
From: damian@qimr.edu.au (Damian James)
Subject: Re: unblessed reference...
Message-Id: <slrna05shr.pj0.damian@puma.qimr.edu.au>
On Mon, 26 Nov 2001 16:50:03 -0800, gabriel bolano said:
>Hi all,
>
>I am getting this error:
>
>Cant call method "prepare" on unblessed refenece at common.lib line nnn,
>etc...
Looks like you are trying to call a method on an object (which in
Perl is just a reference that has been bless()ed into a class), but
are calling it on an ordinary reference instead.
>sub get_data{
>
> my($sql, $Db) = @_;
> ...
> my $sth = $Db->prepare($sql)
I assume that you expect $Db to contain a database handle object
from the DBI class. The error message above is teling you that it
doesn't.
> ...
>} #end get_data
>
>The call:
>
>$str = 'select col1 from tab1';
>$all_data = &get_data($str, $db_conn);
>
So where does $db_conn come from? I am assuming you did something
like:
use DBI;
my $db_conn = DBI->connect(
$dsn, $user, $pass,
{RaiseError => 1}
) or die "Can't connect: $DBI::errstr";
Did you test for success? No-one can really help you without seeing
that part of your code.
Cheers,
Damian
--
@:=grep!(m!$/|#!..$|),split//,<DATA>;@;=0..$#:;while($:=@;){$;=rand
$:--,@;[$;,$:]=@;[$:,$;]while$:;push@|,shift@;if$;[0]==@|;select$,,
$,,$,,1/80;print qq x\bxx((@;+@|)*$|++),@:[@|,@;],!@;&&$/} __END__
Just another Perl Hacker,### http://home.pacific.net.au/~djames.hub
------------------------------
Date: Mon, 26 Nov 2001 22:50:36 -0600
From: brian d foy <comdog@panix.com>
Subject: Re: unblessed reference...
Message-Id: <comdog-C82B11.22503626112001@news.panix.com>
In article <3C02E33B.3B7A2D0D@ebay.sun.com>, Gabriel.Bolano@Sun.COM
wrote:
> I am getting this error:
>
> Cant call method "prepare" on unblessed refenece at common.lib line nnn,
> etc...
> sub get_data{
> my($sql, $Db) = @_;
> my $sth = $Db->prepare($sql)
$Db is not what you think it is. check your arguments to
this function to make sure you have an instance in $Db.
--
brian d foy <comdog@panix.com> - Perl services for hire
CGI Meta FAQ - http://www.perl.org/CGI_MetaFAQ.html
Troubleshooting CGI scripts - http://www.perl.org/troubleshooting_CGI.html
------------------------------
Date: 27 Nov 2001 00:39:35 GMT
From: ajdelore@sfu.ca (Anthony Delorenzo)
Subject: Unix dictionary lookups in perl
Message-Id: <9tunc7$i4j$1@morgoth.sfu.ca>
I'm writing a program that needs to check words against the unix
dictionary file. It will need to check thousands of words in a single
execution. Looking through CPAN, I don't see any native perl modules
(although please correct me if I've missed any). So, what is the best
approach?
1 - Use system calls to the unix 'look' command. Look is very fast, but
the overhead of thousands of system calls would doubtless be high.
2 - Make calls to a C library, if there is one for this purpose.
3 - Write some perl code to access the 'words' file directly.
Thanks,
Anthony
--
Anthony DeLorenzo <ajdelore@sfu.ca>
Vancouver, BC, Canada
http://www.sfu.ca/~ajdelore/
------------------------------
Date: 26 Nov 2001 19:58:36 -0500
From: Joe Schaefer <joe+usenet@sunstarsys.com>
Subject: Re: Unix dictionary lookups in perl
Message-Id: <m3adx958sj.fsf@mumonkan.sunstarsys.com>
ajdelore@sfu.ca (Anthony Delorenzo) writes:
> I'm writing a program that needs to check words against the unix
> dictionary file. It will need to check thousands of words in a single
> execution. Looking through CPAN, I don't see any native perl modules
> (although please correct me if I've missed any). So, what is the best
> approach?
Have you considered reading the file into a hash? 100_000 8-letter
words stored in a hash occupies about 10M of RAM on my linux box.
% wc -l /usr/share/dict/words
45424
% time perl -wlne 'END{print scalar keys %dict; system "ps u $$"}
$dict{$_} = undef' /usr/share/dict/words
45424
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
joe 17047 63.0 5.3 6632 5080 pts/0 S 19:55 0:01 perl
real 0m1.312s
user 0m1.170s
sys 0m0.100s
--
Joe Schaefer "Peace cannot be kept by force. It can only be achieved by
understanding."
--Albert Einstein
------------------------------
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.
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 2214
***************************************