[12416] in Perl-Users-Digest
Perl-Users Digest, Issue: 6016 Volume: 8
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Jun 16 12:07:26 1999
Date: Wed, 16 Jun 99 09:01:30 -0700
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, 16 Jun 1999 Volume: 8 Number: 6016
Today's topics:
Re: Multi line match help (Marcel Grunauer)
Re: Multi line match help (Marcel Grunauer)
Newbie Needs Help <rmbw40@email.sps.mot.com>
Perl and Informix ? <Mark.Conlin@bridge.bellsouth.com>
Re: Perl and Informix ? <gellyfish@gellyfish.com>
Re: Perl and Interrupt (BIOS) Programming (Gabriel Russell)
Re: Regex question (Lee)
Re: saving uploaded file <uucon@my-deja.com>
Re: sprintf padding with zeroes (Paul David Fardy)
Re: SQL statement in Perl paulm@dirigo.com
Re: SQL statement in Perl paulm@dirigo.com
Re: SQL statement in Perl <craig@mathworks.com>
Re: Surprise with .. operator in list context (Greg Bacon)
Re: this charecter @ ruined my day!! (Gabriel Russell)
what does this crypto script do? <simon@profero.com>
What makes a string lose its quotes in DBI/DBD query. <clint@drtech.co.uk>
Re: What makes a string lose its quotes in DBI/DBD quer <craig@mathworks.com>
Special: Digest Administrivia (Last modified: 12 Dec 98 (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Wed, 16 Jun 1999 13:46:39 GMT
From: marcel.grunauer@lovely.net (Marcel Grunauer)
Subject: Re: Multi line match help
Message-Id: <376aa1b3.15428444@enews.newsguy.com>
On Wed, 16 Jun 1999 17:26:17 +0531, "Narasimha G. Pai"
<pai@cadence.com> wrote:
>Hi friends ,
>
> I have a problem in perl pattern matching and only someone here
>can help .
>
>I have a file in the following format :
>
>12:12:96 : Updated test1 . Writing test2.
>01:10:97 : test2 done . Started test3.
> test4 PLANNED .
>
>Now I have to get the date for which test4 was planned .
>I suppose this requires a multiline match .
>
>so what I am doing is setting $/ to nothing . I read the entire file
>in $_ and then try to do a match .
>
>I tried :
>
>if(/([0-9][0-9]).*PLANNED) /) and guess what it gave me :
I guess it gave you a
"/([0-9][0-9]).*PLANNED) /: unmatched () in regexp" error.
Instead of typing code into your message, try cut-and-paste. Avoids
transmission errors from code to message.
Next, the ".*" doesn't match across multiple lines, you should use the
/s modifier for that. perldoc perlre.
I've played around with it and got the following:
#!/usr/bin/perl -w
use strict;
undef $/;
print $1 if <DATA> =~ /(\d\d:\d\d)(?!.*?\d\d:\d\d:\d\d).*?PLANNED /s;
__DATA__
12:12:96 : Updated test1 . Writing test2.
01:10:97 : test2 done . Started test3.
test4 PLANNED .
However, I feel that this is a bit ugly. I've tried the following
(i.e. without the zero-width negative lookahead), but without success
(it printed 12:12):
print $1 if <DATA> =~ /(\d\d:\d\d).*?PLANNED /s;
I understand that the regex starts matching at the beginning, so it
finds 12:12, but I thought the non-greedy .*? will reduce it to match
01:10. Or is it only non-greedy from the end, but not from the
beginning (sorry for the wording, I hope you know what I mean)?
HTH
Marcel
------------------------------
Date: Wed, 16 Jun 1999 13:59:12 GMT
From: marcel.grunauer@lovely.net (Marcel Grunauer)
Subject: Re: Multi line match help
Message-Id: <376dad58.18409090@enews.newsguy.com>
On Wed, 16 Jun 1999 13:46:39 GMT, marcel.grunauer@lovely.net (Marcel
Grunauer) wrote:
>print $1 if <DATA> =~ /(\d\d:\d\d)(?!.*?\d\d:\d\d:\d\d).*?PLANNED /s;
[deletia]
>However, I feel that this is a bit ugly. I've tried the following
>(i.e. without the zero-width negative lookahead), but without success
>(it printed 12:12):
>
>print $1 if <DATA> =~ /(\d\d:\d\d).*?PLANNED /s;
>
>I understand that the regex starts matching at the beginning, so it
>finds 12:12, but I thought the non-greedy .*? will reduce it to match
>01:10. Or is it only non-greedy from the end, but not from the
>beginning (sorry for the wording, I hope you know what I mean)?
Ignore me. I've just seen the mistake. There's a ".*" missing at the
start of the regex.
Sorry
Marcel
------------------------------
Date: Wed, 16 Jun 1999 10:11:31 -0500
From: Denise Pool-Kalvelage <rmbw40@email.sps.mot.com>
Subject: Newbie Needs Help
Message-Id: <3767BEA3.7B9ABD03@email.sps.mot.com>
This is a multi-part message in MIME format.
--------------9F7A0276395288F07AA379C0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
I am looking for the code to subtract the count from a field when a user
chooses a class to sign-up for. Example: I have a form for user to
choose which day and time they would like to attend a class. When the
class is full, >10, user must choose another day and time. I am on a
strict deadline and need it fast!!! Can anyone help me???
thanks,
dpk
--------------9F7A0276395288F07AA379C0
Content-Type: text/x-vcard; charset=us-ascii; name="vcard.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for Pool-Kalvelage, Denise
Content-Disposition: attachment; filename="vcard.vcf"
begin: vcard
fn: Denise Pool-Kalvelage
n: Pool-Kalvelage;Denise
org: Motorola -- CISD
adr;dom: ;;2200 W. Broadway;M200;AZ;85202;
email;internet: rmbw40@email.sps.mot.com
title: Intranet Technology Developer
tel;work: 480-655-4901
tel;fax: pager: 18003510739
tel;home: alphapage: 3510739@skytel.com
x-mozilla-cpt: ;0
x-mozilla-html: FALSE
version: 2.1
end: vcard
--------------9F7A0276395288F07AA379C0--
------------------------------
Date: Wed, 16 Jun 1999 11:10:39 -0400
From: Mark Conlin <Mark.Conlin@bridge.bellsouth.com>
Subject: Perl and Informix ?
Message-Id: <3767BE6F.6C191340@bridge.bellsouth.com>
Can perl interact with Informix DBs ?
If so and you have done it, could you mail me a script or two so
I can use it as an example.
Thanks
Mark
------------------------------
Date: 16 Jun 1999 16:36:07 +0100
From: Jonathan Stowe <gellyfish@gellyfish.com>
Subject: Re: Perl and Informix ?
Message-Id: <3767c467@newsread3.dircon.co.uk>
Mark Conlin <Mark.Conlin@bridge.bellsouth.com> wrote:
> Can perl interact with Informix DBs ?
>
> If so and you have done it, could you mail me a script or two so
> I can use it as an example.
>
> Can perl interact with Informix DBs ?
>
> If so and you have done it, could you mail me a script or two so
> I can use it as an example.
>
There is a DBI module DBD::Informix available from CPAN:
<http://www.perl.com/CPAN/modules/by-module/DBD/DBD-Informix-0.60.tar.gz>
You will require the Informix Client SDK to compile it however - I have
built it on Linux,SCO,Solaris with success. If you are using Win32 and
dont have access to a compiler then you might be better off using the
Informix ODBC drivers and DBD::ODBC.
Both the ODBC drivers and the Client SDK for a variety of platforms are
now available as a free download from <http://www.intraware.com>.
As far as examples - well I'm part way through moving a bunch of 4GL code
over to Perl but I cant find anything complete but small enough to post -
I'll think about it when I get home ... In the meantime grab the
module and read the documentation ;-} You also might be interested in
the examples at <http://examples.informix.com/cgiTOC.html> .
/J\
--
"Is there no demand for mechanical pussies?" - Mrs Slocombe
------------------------------
Date: Wed, 16 Jun 1999 15:23:13 GMT
From: grussell@hushmail.com (Gabriel Russell)
Subject: Re: Perl and Interrupt (BIOS) Programming
Message-Id: <3769c149.75297572@news.supernews.com>
Could you create an perl XS library that contains the inline assembly?
On 16 Jun 1999 09:04:45 GMT, compsci90@aol.com (CompSci90) wrote:
>Hello!
>
>I'm trying to find a way in which I can do interrupt (BIOS) programming in
>Perl.
>
>One way that comes to mind is the way in which interrupt (BIOS) programming is
>done in C (i.e., inline assembly programming).
>
>Is there a way in which I can do inline assembly programming in Perl?
>
>If not, is there *any* way in which I can do interrupt (BIOS) programming in
>Perl?
>
>Any help will be appreciated.
>Thank you.
>
>Regards,
>Alex K.
------------------------------
Date: Wed, 16 Jun 1999 10:52:59 -0500
From: rlb@intrinsix.ca (Lee)
Subject: Re: Regex question
Message-Id: <B38D328B96687D59BB@204.112.166.88>
In article <MPG.11d140a6edb19584989bef@nntp.hpl.hp.com>,
lr@hpl.hp.com (Larry Rosler) wrote:
>"Ctime converts a long integer, pointed to by clock, representing the
>time in seconds since 00:00:00 UTC, January 1, 1970, and returns a
>pointer to a 26-character string of the form
>
> Thu Nov 24 18:22:48 1986\n\0
>
>All the fields have constant width. ..."
>
>
>Perl wisely dispenses with the last two characters, so the result of
>
> perl -e "print length localtime"
>
>is always 24.
Gah!
Time to start working on the Y10K bug.
Lee
------------------------------
Date: Wed, 16 Jun 1999 14:46:19 GMT
From: Ryan Corder <uucon@my-deja.com>
Subject: Re: saving uploaded file
Message-Id: <7k8dbn$m2u$1@nnrp1.deja.com>
Doesn't CGI.pm show you how to save a file with a specific filename
though? i need to save it in their images subdir with the name they
supplied.
ryan
In article <slrn7mdvrk.hd.efflandt@efflandt.xnet.com>,
efflandt@xnet.com wrote:
> On Tue, 15 Jun 1999 22:05:13 GMT, Ryan Corder <uucon@my-deja.com> wrote:
> >ok, following the advice of the newsgroup community, i have managed to
> >configure my script with CGI.pm so that a user can upload a file. Now, how
> >do i save the file in a particular dir. I want to be able to save the
> >uploaded image in: /home/<username>/images here is the code i used to read
> >the filename and the MIME type so that users can only upload images:
>
> If the script is not running suid as the user, make sure that the images
> directory has 777 permission (747 or 707 might work). Other than that,
> follow the instructions in CGI.pm.
>
> --
> David Efflandt efflandt@xnet.com http://www.xnet.com/~efflandt/
> http://www.de-srv.com/ http://cgi-help.virtualave.net/
>
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: 16 Jun 1999 14:59:00 GMT
From: pdf@morgan.ucs.mun.ca (Paul David Fardy)
Subject: Re: sprintf padding with zeroes
Message-Id: <7k8e3k$oik$1@coranto.ucs.mun.ca>
[ Courtesy CC sent to tchrist@mox.perl.com. ]
In comp.lang.perl.misc, Uri Guttman <uri@sysarch.com> writes:
>> you could of quoted the faq entry on padding instead.
> ^^ EINVAL
Tom Christiansen <tchrist@mox.perl.com> writes:
>I thought I'd send them right at the source this time.
^^ EOPNOTSUPP
Shouldn't that be "to the source"?
Maybe not. I've sometimes felt that you'd like to turn a poster
into a projectile. In that case: EACCESS. :-)
Paul Fardy
------------------------------
Date: Wed, 16 Jun 1999 13:10:13 GMT
From: paulm@dirigo.com
Subject: Re: SQL statement in Perl
Message-Id: <7k87ne$jmr$1@nnrp1.deja.com>
I've heard of using the DBI:ODBC module, but we already have the ODBC
connection working. I've put flags in my program that ensures that the
script is making a connection with the DSN. The problem occurs when it
trys to send the SQL statement to the database. It either doesn't like
the way the SQL is formatted or I'm doing something wrong. I've tried
every combination of SQL imaginable to man, but nothing has worked.
I'd like to stick to using the Win32 OLE module.
Also, my debug file is coming back empty, so I don't know why it's
erring out.
Any ideas?
In article <7k7p77$7be@news.vtcom.fr>,
"Ysteric's" <eyounes@aol.com> wrote:
> why don't you use DBI and DBD::ODBC modules, it's very easy ...
>
> look the folowing example :
>
> use DBI;
>
> print "connexion ...";
> $dbh = DBI->connect('dbi:ODBC:Secu') || die('$DBI::errstr');
> # ^^^^^ this
is your
> DSN
>
> print "...connexion OK";
>
> $sth = $dbh->prepare(qq{select * from testrg});
> $sth->execute || die('$DBI::errstr');
>
> $cnt = 0;
> print qq{<font face="Arial,Helvetica" width=600><table>
> };
> $no_secu =~ s/ /+/g;
> if( @rows = $sth->fetchrow_array) {
> foreach $x (@rows) {
> print "$x<br>"; #for example !!!
> }
> } else {
> print qq{
> <table width="400" border=0 bgcolor="#000000">
> <th><font face="Arial, Helvetica" color="#FFFFFF"
> size="5"><center><b>Fiche
employ&eatute;<br> </b></center></font></th>
> <tr>
> <td><hr><font face="Arial, Helvetica, sans-serif"
> color="#FFFFFF"><b>Sorry, no records found !</b></font><hr></td>
> </tr>
> </table>
> };
> }
>
> $sth->finish;
> $dbh->disconnect;
>
> Hope that it will be useful for you
>
> Eric - FRANCE
>
> paulm@dirigo.com a icrit dans le message <7k669f$ts0
$1@nnrp1.deja.com>...
> >Does anyone have any familiarity with writing SQL statements in Perl?
> >
> >I have a script that's using Win32 OLE and calling a System DSN. The
> >call to the system DSN is working, but the script is failing when
> >running the SQL statement. I'm attempting to grab info from an
Access
> >97 database. It looks as follows:
> >
> >my $db = new Win32::ODBC( $dsn ) || die "Error: " .
Win32::ODBC::Error
> >();
> >$stmt = "SELECT ALL * FROM [Forecast]";
> >
> >I've tried multiple combinations of the SQL. It's attempting to grab
> >the data from the Forecast table and print it, but it keeps erring
out.
> >
> >Does this have something to do with Access 97?
> >Any help would be largely appreciated.
> >
> >Thanks in advance.
> >
> >--
> >Paul R. Mesker
> >System Engineer
> >Dirigo Inc.
> >
> >
> >Sent via Deja.com http://www.deja.com/
> >Share what you know. Learn what you don't.
>
>
--
Paul R. Mesker
System Engineer
Dirigo Inc.
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Wed, 16 Jun 1999 13:13:25 GMT
From: paulm@dirigo.com
Subject: Re: SQL statement in Perl
Message-Id: <7k87td$joa$1@nnrp1.deja.com>
Not sure what your talking about, but a Perl script will run SQL if
writen correctly!
I've used 1000 different SQL strings to try and get this working and
none has worked. I've tried brackets, quotes, I've even looked at how
my queries are formatted in Access 97 and used the EXACT same string,
but it still will not work.
Paul
In article <brian-ya02408000R1506991654440001@news.panix.com>,
brian@pm.org (brian d foy) wrote:
> In article <7k669f$ts0$1@nnrp1.deja.com>, paulm@dirigo.com posted:
>
> > Does anyone have any familiarity with writing SQL statements in
Perl?
>
> Perl doesn't know anything about SQL. data are data. make sure that
> you are constructing the proper strings to send to the database
server.
> that only requires you to know SQL, and not Perl ;)
>
> good luck :)
>
> --
> brian d foy
> CGI Meta FAQ <URL:http://www.smithrenaud.com/public/CGI_MetaFAQ.html>
> Perl Monger Hats! <URL:http://www.pm.org/clothing.shtml>
>
--
Paul R. Mesker
System Engineer
Dirigo Inc.
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Wed, 16 Jun 1999 11:28:52 -0400
From: Craig Ciquera <craig@mathworks.com>
Subject: Re: SQL statement in Perl
Message-Id: <3767C2B4.235840DE@mathworks.com>
Check out:
http://www.symbolstone.org/technology/perl/DBI/doc/tpj5/index.html
Craig
> Paul R. Mesker
> System Engineer
> Dirigo Inc.
>
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.
------------------------------
Date: 16 Jun 1999 14:57:20 GMT
From: gbacon@itsc.uah.edu (Greg Bacon)
Subject: Re: Surprise with .. operator in list context
Message-Id: <7k8e0g$j7m$2@info2.uah.edu>
In article <7k8998$8te$1@lublin.zrz.tu-berlin.de>,
anno4000@lublin.zrz.tu-berlin.de (Anno Siegel) writes:
: Why does
:
: ( chr( 0) .. chr( 26) )
:
: produce a list of length 1, only containing chr( 0)?
>From the perlop manpage:
Range Operators
Binary ".." is the range operator, which is really two different
operators depending on the context. In list context, it returns an
array of values counting (by ones) from the left value to the right
value.
[...]
The range operator (in list context) makes use of the magical
auto-increment algorithm if the operands are strings.
The perlop manpage has this to say about magical auto-increment:
The auto-increment operator has a little extra builtin magic to it.
If you increment a variable that is numeric, or that has ever been
used in a numeric context, you get a normal increment. If, however,
the variable has been used in only string contexts since it was set,
and has a value that is not the empty string and matches the pattern
/^[a-zA-Z]*[0-9]*$/, the increment is done as a string, preserving
each character within its range, with carry
Neither "\x00" nor "\x1A" match /^[a-zA-Z]*[0-9]*$/. Both "\x00" and
"\x1A" are treated as 0 when used numerically, so the range operator
thinks it's done.
That said, you can get the strings you want by doing
my @chars = map { chr $_ } 0 .. 26;
Hope this helps,
Greg
--
The viewing of web pages must not put the reader at risk of epileptic
seizures.
-- Tom Christiansen
------------------------------
Date: Wed, 16 Jun 1999 15:26:06 GMT
From: grussell@hushmail.com (Gabriel Russell)
Subject: Re: this charecter @ ruined my day!!
Message-Id: <376ac1ba.75410334@news.supernews.com>
ALWAYS ALWAYS ALWAYS debug your cgi scripts on the command line.
If they wont work there then they wont work under a webserver.
On 16 Jun 1999 02:05:39 GMT, Lucifer Bonaventure <revjack@radix.net>
wrote:
>Tom Christiansen explains it all:
>
>:Give up now. If you can't get at your own errors, there's really
>:very little hope.
>
>Lack of access to logs (of any kind) is more widespread than one might
>think, especially with the popularity of those quickie we-host-4-U web
>hosting companies. Anticipate more and more of these pleas.
>
>One could rightly criticise the administators of such services for their
>decision not to make the logs readily available to developers. And, one
>could criticise people who patronize these services. But they're there,
>and there are lots of them, and there are likely to be more. Patrons of
>these services will always need some poor schmoe (like me) to develop
>their feedback forms, flat-file databases, bulletin boards, search
>engines, etc., without the benefit of log access. It pays the bills.
>
>Fortunately, there *are* ways to develop and debug given only the HTTP
>protocol. How to achieve this sort of one-eyed development may already be
>a FAQ, I don't know. I'm too lazy to look.
>
>Probably has something to do with one of those module thingies.
------------------------------
Date: Wed, 16 Jun 1999 16:54:43 +0100
From: Simon Wistow <simon@profero.com>
Subject: what does this crypto script do?
Message-Id: <3767C8C3.4C342BDE@profero.com>
Just came across this in Neal Stephenson's Cryptonomicon
My Perl isn't brilliant so I only managed to get so far in working out what it
does, can anyone help? Understanding things like this would *REALLY* help my
Perl skills (or lack of them)
According to the preceding paragraph of the book
"The variable $D contains the 54-element pemutation. The subroutine e generates
the next keystream value whilst evolving $D."
Simon
--
#!/usr/bin/perl
#if $d exists make $f-1 otherwise $f=1
$f=$d?-1:1;
# create all known alphanumerics characters
$D=pack('C*',33..86);
# get a word (filename?) and strip out lowercase chars
$p = shift;
$p =~ y/a-z/A-Z/;
# make a couple of RegExps
$U ='$D=~s/(.*)U$/U$1/;$D=~s/U(.)/$1U/;';
# make V = U but with all Us changed to Vs
($V=$U)=~s/U/V/g;
$p =~s/[A-Z]/$k=ord($&)-64,&e/eg;
while (<>)
{
y/a-z/A-Z/;
y/A-Z//dc;
$o.=$_;
}
# pad $o out with Xs so that its length is not a multiple of 5
$o.='X' while length ($o) %5 && !$d;
# this line has been commented out because I get a
# compile error but as far as I can see it's verbatim
#$o=~s/.chr(($f*&e+ord($&)-13)%26+65)/eg;
$o=~s/X*$// if $d;
$o=~s/.{5}/$&/g;
print "$o\n";
sub v
{
$v = ord(substr($D,$_[0]))-32;
$v>53?53:$v;
}
sub w
{
$D=~s/(.{$_[0]})(.*)(.)/$2$1$3/;
}
sub e
{
eval "$U$V$V";
$D=~s/(.*)([UV].*[UV])(.*)/$3$2$1/;
&w(&v(53));
$k?(&w($k)):($c=&v(&v(0)),$c>52?&e:$c);
}
------------------------------
Date: Wed, 16 Jun 1999 16:20:18 +0100
From: "Clinton Gormley" <clint@drtech.co.uk>
Subject: What makes a string lose its quotes in DBI/DBD query.
Message-Id: <7k8f5e$t13$1@taliesin.netcom.net.uk>
I am running a perl script in mod_perl to pull out some records from a MySQL
database through the DBI/DBD interface.
I am trying to a query that looks like this :
$sth = $dbh->prepare (<<END);
SELECT COUNT(*)
FROM Table
WHERE Cat1 like ? AND
Cat2 like ? AND
Cat 3 like ?
END
I call it with $sth->execute(@params);
@params is an array of (usually) numbers. If a parameter is not specified,
it is replaced with the wildcard '%'.
So the executed statment might look like this :
SELECT COUNT(*)
FROM Table
WHERE Cat1 like '%' AND
Cat2 like 2 AND
Cat 3 like '%'
This is usually what happens and all is well. However, occasionally (and it
is difficult to reproduce this), the '%' will lose its quotes and the query
will look like this :
SELECT COUNT(*)
FROM Table
WHERE Cat1 like % AND
Cat2 like 2 AND
Cat 3 like '%'
This generates a syntax error.
Any ideas as to why this might happen? Is the array element being
transferred as a number rather than as a string? Does a % count as a number
in perl? How do I prevent this?
I've tried setting $param[elem]=''.$num; but to no avail.
Thanks
Clint
------------------------------
Date: Wed, 16 Jun 1999 11:42:31 -0400
From: Craig Ciquera <craig@mathworks.com>
Subject: Re: What makes a string lose its quotes in DBI/DBD query.
Message-Id: <3767C5E7.A1F89FB@mathworks.com>
Hi,
Don't know exactly what would cause this behavior, but you may want to take some
additional steps. These would most likely alleviate the problem:
my $sql = qq( SELECT id, name, title, phone
FROM employees
WHERE name LIKE ? );
my $sth = $dbh->prepare( $sql );
$sth->execute();
Craig
> Any ideas as to why this might happen? Is the array element being
> transferred as a number rather than as a string? Does a % count as a number
> in perl? How do I prevent this?
>
> I've tried setting $param[elem]=''.$num; but to no avail.
>
> Thanks
> Clint
------------------------------
Date: 12 Dec 98 21:33:47 GMT (Last modified)
From: Perl-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Special: Digest Administrivia (Last modified: 12 Dec 98)
Message-Id: <null>
Administrivia:
Well, after 6 months, here's the answer to the quiz: what do we do about
comp.lang.perl.moderated. Answer: nothing.
]From: Russ Allbery <rra@stanford.edu>
]Date: 21 Sep 1998 19:53:43 -0700
]Subject: comp.lang.perl.moderated available via e-mail
]
]It is possible to subscribe to comp.lang.perl.moderated as a mailing list.
]To do so, send mail to majordomo@eyrie.org with "subscribe clpm" in the
]body. Majordomo will then send you instructions on how to confirm your
]subscription. This is provided as a general service for those people who
]cannot receive the newsgroup for whatever reason or who just prefer to
]receive messages via e-mail.
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". The real FAQ, as it
appeared last in the newsgroup, can be retrieved with the request "send
perl-users FAQ". 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". It appears twice
weekly in the group, but is not distributed in the digest.
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 V8 Issue 6016
**************************************