[13055] in Perl-Users-Digest
Perl-Users Digest, Issue: 465 Volume: 9
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Aug 11 16:17:19 1999
Date: Wed, 11 Aug 1999 13:10:19 -0700 (PDT)
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, 11 Aug 1999 Volume: 9 Number: 465
Today's topics:
Re: Perl script as a FTP client (Donovan Rebbechi)
Re: Perl Sockets on Linux (I R A Darth Aggie)
Re: PerlQt 2.008 <sebastien.tanguy@wanadoo.fr>
Re: POST via an Imagemap - How? <rootbeer@redcat.com>
problem(modules(mutual inclusion)) <davidrubin@lucent.com>
Re: problems with POSIX <USENET@questionexchange.com>
Re(2): NO-ONE USES PERLQT !!!!!!!!!!!!!!!!!!!!!???????? (Thomas M. Schmickl)
Re: Re(2): NO-ONE USES PERLQT !!!!!!!!!!!!!!!!!!!!!???? (Andrew Johnson)
Re: Re(2): NO-ONE USES PERLQT !!!!!!!!!!!!!!!!!!!!!???? (Donovan Rebbechi)
Re: Re(2): NO-ONE USES PERLQT !!!!!!!!!!!!!!!!!!!!!???? (I R A Darth Aggie)
Re: reference to object method (Damian Conway)
Re: reference to object method (Damian Conway)
Re: s/// and interpolation <chris_conway@my-deja.com>
Re: s/// and interpolation (Steve Linberg)
Re: Time:: Hires (Graham Ashton)
Re: while loop teminates too early (Graham Ashton)
Re: win32 Net::SMTP <cassell@mail.cor.epa.gov>
Digest Administrivia (Last modified: 1 Jul 99) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: 11 Aug 1999 14:11:30 -0400
From: elflord@news.newsguy.com (Donovan Rebbechi)
Subject: Re: Perl script as a FTP client
Message-Id: <slrn7r3f6h.lt1.elflord@panix3.panix.com>
On Thu, 05 Aug 1999 01:35:33 +1000, Craig wrote:
>I found a Perl script a while ago which could be used as a FTP client to
>do things such as make dirs, delete & upload etc....
well you didn't find mine, but mine does this. ( download, upload,
delete, reget. No mkdir yet. I'll put it in real soon ;-)
It's written using Net::FTP and perl-Tk.
The User interface is an object ( package ), so the UI code is nicely
seperated from the rest. ( ie so you could just reuse the code
and make it a batch program or write a different UI )
Email me at elflord@pegasus.rutgers.edu if you are intereasted.
--
Donovan
------------------------------
Date: 11 Aug 1999 19:05:21 GMT
From: fl_aggie@thepentagon.com (I R A Darth Aggie)
Subject: Re: Perl Sockets on Linux
Message-Id: <slrn7r3ifj.dv4.fl_aggie@thepentagon.com>
On Wed, 11 Aug 1999 09:07:16 -0700, Scott.R.Wachtler
<Scott.Wachtler@cdc.com>, in <37B19FB4.4C3AD4DF@cdc.com> wrote:
[under linux]
+ it receives a Connection Refused. The "offending" line is
Many flavors of linux fire up tcpwrappers by default. Check your
/etc/hosts.deny and /etc/hosts.allow to see how it is configured.
It may be denying access to your port. And this is the sort of error
you'd get.
James
--
Consulting Minister for Consultants, DNRC
The Bill of Rights is paid in Responsibilities - Jean McGuire
To cure your perl CGI problems, please look at:
<url:http://www.perl.com/CPAN/doc/FAQs/cgi/idiots-guide.html>
------------------------------
Date: 11 Aug 1999 21:37:35 +0200
From: Sebastien Tanguy <sebastien.tanguy@wanadoo.fr>
Subject: Re: PerlQt 2.008
Message-Id: <87d7wuqfb4.fsf@meryllon.death-gates.fr>
>>>>> "PR" == Pavel Ravits <br2@netvision.net.il> writes:
PR> Hi,
PR> If somebody using PerlQt 2nd version and/or got undefined symbol
PR> in Qt.pm please contact - I need to know how I can make it work,
PR> PerlQt compiled and installed but programs don't work because
PR> that. Maybe something with my versions not good - I have perl
PR> 5.004_05 and Qt 1.42
No version problem, but last time i did try, the Qt lib would not be
linked to the dynamic glue code, hence the undefined symbols at
runtime. To correct this, you may need to recompile the module and add
-lqt somewhere in the Makefile. (or you may event try to use the
LD_PRELOAD environment variable, depending upon your system).
greetings,
seb.
--
``In its pure form, Pascal is a toy language, suitable for teaching
but not for real programming.'' (Kernighan)
------------------------------
Date: Wed, 11 Aug 1999 12:07:40 -0700
From: Tom Phoenix <rootbeer@redcat.com>
Subject: Re: POST via an Imagemap - How?
Message-Id: <Pine.GSO.4.10.9908111205140.7774-100000@user2.teleport.com>
On Thu, 5 Aug 1999, Carl Meilahn wrote:
> The post method uses "db_search_and_display_button" as submit's value,
> but I'm not sure how to include that in the QUERY_STRING.
Sounds like something that you could find in the docs, FAQs, and
newsgroups about the web and its protocols. If you're not sure what those
things are and how to search for them, please let me know. Cheers!
--
Tom Phoenix Perl Training and Hacking Esperanto
Randal Schwartz Case: http://www.rahul.net/jeffrey/ovs/
------------------------------
Date: Wed, 11 Aug 1999 16:03:08 -0400
From: David L Rubin <davidrubin@lucent.com>
Subject: problem(modules(mutual inclusion))
Message-Id: <37B1D6FC.A50DF492@lucent.com>
This is a multi-part message in MIME format.
--------------53A63395AA285EF84F7A35A0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
I have the following problem:
two modules, P::M1 and P::M2.
P::M1 exports &m1foo and &m1fee under the tag "common".
P::M2 exports &m2foo.
P::M1 uses P::M2 and imports &m2fee.
P::M2 uses P::m1 and imports :common.
P::M1::m1foo calls &m2foo.
P::M2::m2foo calls &m1fee.
A perl program called exptest.pl uses P::M1, imports :common, and calls &m1foo.
The output:
exptest.pl
P::M1: m1foo
P::M2: m2foo
Undefined subroutine &P::M2::m1fee called at P/M2.pm line 16.
http://www.cpan.org/doc/manual/html/pod/perlmod.html#Perl_Modules says the
following:
"In general, use Module () is recommended over require Module, because it
determines module availability at compile time, not in the middle of your
program's execution. An exception
would be if two modules each tried to use each other, and each also called a
function from that other module. In that case, it's easy to use requires
instead."
I don't understand how to use this advise to make my program work. Can anyone
help? Thanks.
Code attached. Please respond by email as well as to the group.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
David L Rubin f 1.973.581.6665 v 1.973.386.8598
Lucent Technologies, NJ0117 14J-211, 67 Whippany Rd, Whippany, NJ 07981
--------------53A63395AA285EF84F7A35A0
Content-Type: application/x-perl; name="exptest.pl"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline; filename="exptest.pl"
use strict;
use P::M1 qw(:common);
print STDOUT "exptest.pl\n";
m1foo();
--------------53A63395AA285EF84F7A35A0
Content-Type: text/plain; charset=us-ascii; name="M1.pm"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline; filename="M1.pm"
package P::M1;
#BEGIN { $Exporter::Verbose=1 }
use strict;
use P::M2 qw(m2foo);
use Exporter ();
use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK);
@ISA = qw(Exporter);
my @common = qw(m1foo m1fee);
%EXPORT_TAGS = (common => \@common);
@EXPORT_OK = (@common);
sub m1foo
{
print STDOUT "P::M1: m1foo\n";
m2foo();
}
sub m1fee
{
print STDOUT "P::M1: m1fee\n";
}
1;
--------------53A63395AA285EF84F7A35A0
Content-Type: text/plain; charset=us-ascii; name="M2.pm"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline; filename="M2.pm"
package P::M2;
#BEGIN {$Exporter::Verbose=1;}
use strict;
use P::M1 qw(:common);
use Exporter ();
use vars qw(@ISA @EXPORT_OK);
@ISA = qw(Exporter);
@EXPORT_OK = qw(m2foo);
sub m2foo
{
print STDOUT "P::M2: m2foo\n";
m1fee();
}
1;
--------------53A63395AA285EF84F7A35A0--
------------------------------
Date: 11 Aug 1999 18:38:42 GMT
From: QuestionExchange <USENET@questionexchange.com>
Subject: Re: problems with POSIX
Message-Id: <767qx@questionexchange.com>
> running has been called from a tty or from a job such as cron.
> So in order to do this I am trying to use POSIX::isatty().
> Unfortunately I
> am not getting any return from the function nor an error.
> Is it possible for a script to be able to find out whether or
> not itself is
> connected to a tty.
> I could be invoking the function incorrectly also, but I am
> assuming not as
> I am not getting an error of any type. The perldoc states that
> you are
> suppose to pass in a filehandle. I have tried both the name of
> the script
> and the pid.
> The manpage for the C func isatty shows an int should be passed
> into the
> function, which would make me assume it should be the pid. So
> in order to
> do that I called the function like this.
> POSIX::isatty(POSIX::getpid()); no return from the function.
> I then tried the name of the script calling the function as
> such as:
> POSIX::isatty("filename");
> I am assuming that the function should return a 0 or 1 as does
> the C isatty.
> Is this correct?
> Am I not using this function correctly, or could there be a
> problem with my
> perl installation.
> thanks,
> Paul
isatty(STDIN)
does what you want.
--
This answer is courtesy of QuestionExchange.com
http://www.questionexchange.com/servlet1/showUsenetGuest?ans_id=2586&cus_id=USENET&qtn_id=1656
------------------------------
Date: Wed, 11 Aug 1999 20:36:43 +0200
From: schmickl@magnet.at (Thomas M. Schmickl)
Subject: Re(2): NO-ONE USES PERLQT !!!!!!!!!!!!!!!!!!!!!?????????????????????????
Message-Id: <fc.0064b97f044cb2ed3b9aca000f16f846.44cb592@city.magnet.at>
tadmc@metronet.com writes:
> It has nothing to do with Perl.
>
> It is a general Usenet thing.
>
> *plonk* means that you are killfiling somebody.
>
> Once entered into a killfile, the killed person's post are
> automatically deleted so that the plonker never sees them.
>
> It is the 'net way of saying:
>
> I will never see anymore posts from you
>
>
> The 'K' key is how you make a killfile entry is some popular
> newsreader software.
Thats one of the inventions that should have ne ver been made !
I am somebody who always insists on the freedom of speech
which gets useless if nobody listens you.
You can say 10 times silly things and the eleventh one could be a genius
idea.
But with this invention, nowbody would notice. In Europe we had also
things like this (in the dark middle age). Some there taken to the
"PRANGER" where
everybody could spit and lough at them, others were marked with some
signs, so
that they became lower then the normal citizens.
And even guys like hitler denied some
part of the population the right of speech and the systematically closed
the ears of the majority
for the arguments of these (belived) lower human beings. The majority
realy thought
it had the right to first ignore them, later punish them and afterward
kill them.
As we all know, this should better not have happend. I am from austia, a
land that
was part of this regime just a few decades ago, so I am very sensible to
all kinds
of arrogant totalitarism and censorship.
Why do you thing that some other human beeings should just be silenced in
this (or other) newsgoup(s). ???
Ciao, thomas.
------------------------------
Date: Wed, 11 Aug 1999 19:27:36 GMT
From: andrew-johnson@home.com (Andrew Johnson)
Subject: Re: Re(2): NO-ONE USES PERLQT !!!!!!!!!!!!!!!!!!!!!?????????????????????????
Message-Id: <I8ks3.895$dr6.16865@news1.rdc2.on.home.com>
In article <fc.0064b97f044cb2ed3b9aca000f16f846.44cb592@city.magnet.at>,
Thomas M. Schmickl <schmickl@magnet.at> wrote:
! tadmc@metronet.com writes:
! > It has nothing to do with Perl.
! >
! > It is a general Usenet thing.
! >
! > *plonk* means that you are killfiling somebody.
! >
! > Once entered into a killfile, the killed person's post are
! > automatically deleted so that the plonker never sees them.
[snip]
! I am somebody who always insists on the freedom of speech
! which gets useless if nobody listens you.
A person's freedom of speech has nothing to do with my freedom to
ignore said speech --- if nobody listens that does not mean their
freedom of speech is impaired or useless, though perhaps it might
be indicative of the value of what they have said in the past.
[snip]
! Why do you thing that some other human beeings should just be silenced in
! this (or other) newsgoup(s). ???
Killfiling is not censorship. If I choose to killfile a person, I
will no longer see their posts. This would not affect anyone else
and that person may still be heard by anyone who wants to listen.
regards
andrew
------------------------------
Date: 11 Aug 1999 15:31:10 -0400
From: elflord@news.newsguy.com (Donovan Rebbechi)
Subject: Re: Re(2): NO-ONE USES PERLQT !!!!!!!!!!!!!!!!!!!!!?????????????????????????
Message-Id: <slrn7r3jrs.19e.elflord@panix3.panix.com>
On Wed, 11 Aug 1999 20:36:43 +0200, Thomas M. Schmickl wrote:
>tadmc@metronet.com writes:
>I am somebody who always insists on the freedom of speech
>which gets useless if nobody listens you.
I disagree with your reasoning. Freedom of speech comes with
the freedom to choose not to listen. That you are free to speak
does not mean that I am compelled to listen to you.
>You can say 10 times silly things and the eleventh one could be a genius
>idea.
But I am not obliged to listen to the garbage in hope of catching
the gem.
>But with this invention, nowbody would notice. In Europe we had also
I submit yourself as a counter example. If you stay true
to y our professed beliefs, you will notice. And there will
be others like you.
>things like this (in the dark middle age). Some there taken to the
>"PRANGER" where
>everybody could spit and lough at them, others were marked with some
>signs, so
>that they became lower then the normal citizens.
This is persecution. It has nothing to do with choosing
who to listen to.
>And even guys like hitler denied some
>part of the population the right of speech and the systematically closed
>the ears of the majority
In other words, Hitler *chose* who could be listened to. It's
one thing for *ME* to decide what or who to listen to, it's a very
different thing for the government to make that decision for me.
>Why do you thing that some other human beeings should just be silenced in
>this (or other) newsgoup(s). ???
I am not silencing someone when I killfile them.
Others are still free to listen to them.
--
Donovan
------------------------------
Date: 11 Aug 1999 19:12:07 GMT
From: fl_aggie@thepentagon.com (I R A Darth Aggie)
Subject: Re: Re(2): NO-ONE USES PERLQT !!!!!!!!!!!!!!!!!!!!!?????????????????????????
Message-Id: <slrn7r3isa.dv4.fl_aggie@thepentagon.com>
On Wed, 11 Aug 1999 20:36:43 +0200, Thomas M. Schmickl
<schmickl@magnet.at>, in
<fc.0064b97f044cb2ed3b9aca000f16f846.44cb592@city.magnet.at> wrote:
+ I am somebody who always insists on the freedom of speech
+ which gets useless if nobody listens you.
But that isn't the fault of the listeners if they judge you to be not
worth listening to. That is the fault of the speaker for behaving
poorly enough that he gets tuned out.
You may have the freedom to speak your mind, but I have the freedom
to tune you out and not listen.
+ Why do you thing that some other human beeings should just be silenced in
+ this (or other) newsgoup(s). ???
Why do you think that I should be forced to read what they write? Is
that not also a form of totalitarianism? Particularly if I have placed
them on a scale and found them to be...lacking...
Are you confusing a killfile with an article cancellation? There *is*
a difference.
James - killfiles are your friends, used judiciously...
--
Consulting Minister for Consultants, DNRC
The Bill of Rights is paid in Responsibilities - Jean McGuire
To cure your perl CGI problems, please look at:
<url:http://www.perl.com/CPAN/doc/FAQs/cgi/idiots-guide.html>
------------------------------
Date: 11 Aug 1999 19:35:38 GMT
From: damian@cs.monash.edu.au (Damian Conway)
Subject: Re: reference to object method
Message-Id: <7osjaa$n38$1@towncrier.cc.monash.edu.au>
gbacon@itsc.uah.edu (Greg Bacon) writes:
>In article <7oqp8i$ioe$1@towncrier.cc.monash.edu.au>,
> damian@cs.monash.edu.au (Damian Conway) writes:
>: Note that you can also use symbolic references and write:
>:
>: my $ref = "Bar::FooOnYou";
>: $var->$ref("Howdy\n");
>:
>: But you didn't hear that from me ;-)
>I've used this construct for a while, but I've never thought of it as
>being a symbolic reference. The following program runs happily, so do
>we have a hole in C<use strict 'refs'>?
I think so.
>I'm inclined to think of $obj->$var() as a dynamic method call, but
>maybe I'm just trying to define away the problem. :-)
I think so.
:-)
Damian
------------------------------
Date: 11 Aug 1999 19:46:45 GMT
From: damian@cs.monash.edu.au (Damian Conway)
Subject: Re: reference to object method
Message-Id: <7osjv5$n30$1@towncrier.cc.monash.edu.au>
Uri Guttman <uri@sysarch.com> writes:
> GB> I'm inclined to think of $obj->$var() as a dynamic method call, but
> GB> maybe I'm just trying to define away the problem. :-)
>that is not a true symbolic ref as a regular method call needs to be
>searched for too. so all you are doing is providing a runtime value
>vs. a compile time constant. perl still has to take the string and
>search the class's (and its @ISA parent's) symbol tables for the method.
Though Uri is correct about the differences between normal symbolic
refs and symbolic method names, I still don't think those differences
constitute a good enough reason to exclude method lookup from the
scrutiny of use strict 'refs'.
Warnings of this type should concern themselves with the causes and
outcomes of bugs, not the mechanisms by which those bugs bite.
>how come nobody (even damian, the OOP god) mentioned UNIVERSAL::can? it
>will return a true ref to the method which you can then call it like
>greg does.
It was very remiss of me. Perhaps I am a capricious god. Or an OOPS god :-)
Actually, I see the existence of &can as a good reason why symbolic
method calls *ought* to provoke use strict's wrath. Since there's a
safe way to convert a method name to a method reference:
$methodref = $obj->can($methodname);
$obj->$methodref();
the "unsafe" (or perhaps "unintentional") way:
$obj->$methodname();
ought to be flagged.
Damian
------------------------------
Date: Wed, 11 Aug 1999 18:23:19 GMT
From: Christopher Conway <chris_conway@my-deja.com>
Subject: Re: s/// and interpolation
Message-Id: <7osf28$k88$1@nnrp1.deja.com>
In article <linberg-1108991306010001@ltl1.literacy.upenn.edu>,
linberg@literacy.upenn.edu (Steve Linberg) wrote:
> In article <7os8ks$f15$1@nnrp1.deja.com>, Christopher Conway
> <chris_conway@my-deja.com> wrote:
>
> > how do I force Perl to
> > interpolate recursively one level down?
>
> Does perlfaq4, "How can I expand variables in text strings?", shed any
> light on your situation?
No, it doesn't. The problem is the variables in the string are
local to the s/// operation, so interpolation of them must take
place within it. It seems like there ought to be a way to tell
Perl, "Interpolate this variable, then interpolate the string
it contains."
Chris
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Wed, 11 Aug 1999 15:23:49 -0400
From: linberg@literacy.upenn.edu (Steve Linberg)
Subject: Re: s/// and interpolation
Message-Id: <linberg-1108991523490001@ltl1.literacy.upenn.edu>
In article <7osf28$k88$1@nnrp1.deja.com>, Christopher Conway
<chris_conway@my-deja.com> wrote:
> It seems like there ought to be a way to tell
> Perl, "Interpolate this variable, then interpolate the string
> it contains."
Here's a brute-force method that might work for you, but I can't advocate
it, *especially* if you're going to run unknown data through it. It would
be *EXTREMELY* dangerous. In fact, it's so dangerous that it borders on
irresponsibility to even post it. However, information must be free, so if
you're generating the data yourself, and you trust it (and yourself), you
can do this:
------------------------------
# Warnings below apply to anyone thinking of using this code, not to anyone
# in particular, and not to Christopher Conway.
# ***************************************
# * *********************************** *
# * * DANGEROUS: DON'T USE THIS CODE! * *
# * *********************************** *
# ***************************************
# Don't use this code.
# Please don't use this code.
die "I said don't use this code!";
$foo = '123-45-6789';
$search = '(\d{3})-(\d{2})-(\d{4})' ;
$replace = 'ID# \1\2\3' ;
my $regex = "(\$record = \$foo) =~ s/$search/$replace/";
# You're not using this code, right? Because here comes the bad part:
# eval $regex; # Do not execute this code. Please.
print "$record\n"; # Thank you for not using this code.
----------------------------
Obviously, if you're accepting input for $replace, and someone gives you
/; system `rm -rf /`; #
Or something equally clever? You'd have to parse their input to be sure it
wasn't malicious, a hairy and awful task. So you should NOT use this
method if you're going to be working with untrusted data.
Like I said, any use of "eval" should throw up blasting red lights and
sirens. I don't know enough about the real, deep-down meat of regexes to
know how to get the string "\1" to interpolate in a replacement clause; it
doesn't act like "$foo", which *will* interpolate. Pick up "Mastering
Regular Expressions" by Jeffrey Friedll, published by O'Reilly, if you want
to go deep.
I'm sure there are better solutions and I'd like to hear them.
--
Steve Linberg, Systems Programmer &c.
National Center on Adult Literacy, University of Pennsylvania
Be kind. Remember, everyone you meet is fighting a hard battle.
print 'Just Another Perl ' . $perl_hierarchy[(USER+EXPERT)/2];
------------------------------
Date: 11 Aug 1999 18:20:40 GMT
From: billynospam@mirror.bt.co.uk (Graham Ashton)
Subject: Re: Time:: Hires
Message-Id: <slrn7r3fnp.8a7.billynospam@wing.mirror.bt.co.uk>
In article <7osauf$pie$1@usenet.rational.com>, Ashish Bhargava wrote:
>After checking the docs for select(), I see that it is used for selecting
>filehandle. How would I use this for time measurements?
Oh you did, did you? Hiding at the end of my copy of the select docs, is
this little snippet;
You can effect a sleep of 250 milliseconds this way:
select(undef, undef, undef, 0.25);
It might be good enough for what you want to do, I don't know, but it's
like a higher resolution sleep().
--
Graham
P.S. <billynospam@mirror.bt.co.uk> is a fully working address...
------------------------------
Date: 11 Aug 1999 18:23:01 GMT
From: billynospam@mirror.bt.co.uk (Graham Ashton)
Subject: Re: while loop teminates too early
Message-Id: <slrn7r3fs6.8a7.billynospam@wing.mirror.bt.co.uk>
In article <37B1A46E.FE83E930@entpm4.prod.fedex.com>, Joel Neely wrote:
>>
>> > while($line=<USERS>) {
that should be "while(defined( $line = <USERS> ))". what happens if
you've got a line that evaluates to false?
--
Graham
P.S. <billynospam@mirror.bt.co.uk> is a fully working address...
------------------------------
Date: Wed, 11 Aug 1999 12:49:15 -0700
From: David Cassell <cassell@mail.cor.epa.gov>
Subject: Re: win32 Net::SMTP
Message-Id: <37B1D3BB.2111E577@mail.cor.epa.gov>
> Declan wrote:
>
> All,
>
> I am currently using perl win32 Net::SMTP to send a mail message. Has anyone
> an example of sending a text message and an attachment.
If you want to attach another file, as opposed to just tacking
some more text onto the bottom of your message, you'll have to
use the MIME specification. There's a very nice MIME::Lite
module available using the ppm program - you are using
ActiveState Perl, aren't you? - that will help you a lot.
And please, in future, turn off MIME in posts to Usenet.
The standard is text-only. You may have to dive deeply into
Microsoft Lookout! Express to find out where the switch is.
David
--
David Cassell, OAO cassell@mail.cor.epa.gov
Senior computing specialist
mathematical statistician
------------------------------
Date: 1 Jul 99 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 1 Jul 99)
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.misc (and this Digest), send your
article to perl-users@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.
The Meta-FAQ, an article containing information about the FAQ, is
available by requesting "send perl-users meta-faq" from
almanac@ruby.oce.orst.edu. The real FAQ, as it appeared last in the
newsgroup, can be retrieved with the request "send perl-users FAQ" from
almanac@ruby.oce.orst.edu. Due to their sizes, neither the Meta-FAQ nor
the FAQ are included in the digest.
The "mini-FAQ", which is an updated version of the Meta-FAQ, is
available by requesting "send perl-users mini-faq" from
almanac@ruby.oce.orst.edu.
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 V9 Issue 465
*************************************