[28762] in Perl-Users-Digest
Perl-Users Digest, Issue: 6 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Jan 8 06:06:07 2007
Date: Mon, 8 Jan 2007 03:05:07 -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 Mon, 8 Jan 2007 Volume: 11 Number: 6
Today's topics:
backquoted command hangs after GPS read <jphughesjr@gmail.com>
Re: Iterator special variable $_ <uri@stemsystems.com>
Re: Iterator special variable $_ (Mark Hobley)
Re: Iterator special variable $_ (Mark Hobley)
Re: Iterator special variable $_ <jwkenne@attglobal.net>
Re: Iterator special variable $_ <jurgenex@hotmail.com>
Re: Iterator special variable $_ <noreply@gunnar.cc>
Re: Iterator special variable $_ <uri@stemsystems.com>
new CPAN modules on Mon Jan 8 2007 (Randal Schwartz)
Re: PERL5LIB variable does not work as expected ced@blv-sam-01.ca.boeing.com
Re: regex <DJStunks@gmail.com>
Re: regex <asandstrom@accesswave.ca>
Re: regex <uri@stemsystems.com>
Re: regex <mritty@gmail.com>
Re: regex <abigail@abigail.be>
Re: regex <abigail@abigail.be>
To do parallel processing.. <rajendra.prasad@in.bosch.com>
Re: To do parallel processing.. <abigail@abigail.be>
using 'Not' while greping using regex <shafa.fahad@gmail.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: 7 Jan 2007 15:52:02 -0800
From: "John" <jphughesjr@gmail.com>
Subject: backquoted command hangs after GPS read
Message-Id: <1168213922.358788.73790@q40g2000cwq.googlegroups.com>
I'm working on a Windows application that grabs GPS and Iperf data. My
app accesses the GPS receiver through a serial port by way of
GPS::NMEA, and it gets the Iperf data by way of `iperf -c $options`.
The backquoted command works until a GPS capture has been performed,
but after even a single GPS capture the backquoted Iperf command, in
fact *any* backquoted command, causes my app to hang. An attempt to
have the command pipe its output to a filehandle gives the same result.
Note: My GPS code closes the serial port after each capture.
------------------------------
Date: Sun, 07 Jan 2007 18:31:57 -0500
From: Uri Guttman <uri@stemsystems.com>
Subject: Re: Iterator special variable $_
Message-Id: <x77ivy9zwy.fsf@mail.sysarch.com>
>>>>> "MH" == Mark Hobley <markhobley@hotpop.deletethisbit.com> writes:
MH> The iterator special variable can be used in a foreach loop as follows:
it is not the 'iterator' variable. a better name is the default
variable. it is used in many functions as the default argument, for some
i/o ops, regexes, etc.
my rule is to avoid $_ in general as i prefer named variables
(preferably lexicals) as they document the code better. i only use $_
when there is no other choice (map/grep) or where is provides a distinct
advantage (e.g. see Sort::Maker which uses it to pass in the records in $_
for key extraction).
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.stemsystems.com
--Perl Consulting, Stem Development, Systems Architecture, Design and Coding-
Search or Offer Perl Jobs ---------------------------- http://jobs.perl.org
------------------------------
Date: Mon, 08 Jan 2007 01:04:19 GMT
From: markhobley@hotpop.deletethisbit.com (Mark Hobley)
Subject: Re: Iterator special variable $_
Message-Id: <pdg874-bhb.ln1@neptune.markhobley.yi.org>
In alt.perl Paul Lalli <mritty@gmail.com> wrote:
> What were you expecting it to do?
I was expecting a nested loop with the inner iterator not affecting the outer
loop, ie the inner iterator scope is local to the inner loop.
Having done some googling, it appears that nesting a foreach loop would have
worked in the expected manner, because the iterator is preserved on entry and
exit from the loop, but this does not happen with a for loop.
> You can, however, localize $_, at the start of each loop.
Ok. Thanks for the input.
Regards,
Mark.
--
Mark Hobley
393 Quinton Road West
QUINTON
Birmingham
B32 1QE
Telephone: (0121) 247 1596
International: 0044 121 247 1596
Email: markhobley at hotpop dot donottypethisbit com
http://markhobley.yi.org/
------------------------------
Date: Mon, 08 Jan 2007 01:04:19 GMT
From: markhobley@hotpop.deletethisbit.com (Mark Hobley)
Subject: Re: Iterator special variable $_
Message-Id: <3gh874-2ib.ln1@neptune.markhobley.yi.org>
In alt.perl Gunnar Hjalmarsson <noreply@gunnar.cc> wrote:
> foreach my $loop ( 0..3 ) {
Ok, that is clever, but what if I wanted 1 to 50000?
Wouldn't that generate 50000 temporary values in memory to feed the loop, as
opposed to just one value iterating 50000 times?
Regards,
Mark.
--
Mark Hobley
393 Quinton Road West
QUINTON
Birmingham
B32 1QE
Telephone: (0121) 247 1596
International: 0044 121 247 1596
Email: markhobley at hotpop dot donottypethisbit com
http://markhobley.yi.org/
------------------------------
Date: Sun, 07 Jan 2007 20:28:34 -0500
From: "John W. Kennedy" <jwkenne@attglobal.net>
Subject: Re: Iterator special variable $_
Message-Id: <e7hoh.351$0m6.344@newsfe09.lga>
Mark Hobley wrote:
> In alt.perl Gunnar Hjalmarsson <noreply@gunnar.cc> wrote:
>
>> foreach my $loop ( 0..3 ) {
>
> Ok, that is clever, but what if I wanted 1 to 50000?
> Wouldn't that generate 50000 temporary values in memory to feed the loop, as
> opposed to just one value iterating 50000 times?
Theoretically, yes, but, in practice, perl has been smart enough not to
do that for ages.
--
John W. Kennedy
"The blind rulers of Logres
Nourished the land on a fallacy of rational virtue."
-- Charles Williams. "Taliessin through Logres: Prelude"
------------------------------
Date: Mon, 08 Jan 2007 01:33:44 GMT
From: "Jürgen Exner" <jurgenex@hotmail.com>
Subject: Re: Iterator special variable $_
Message-Id: <Ybhoh.764$Br.487@trndny08>
Mark Hobley wrote:
> Having done some googling, it appears that nesting a foreach loop
> would have worked in the expected manner, because the iterator is
> preserved on entry and exit from the loop, but this does not happen
> with a for loop.
You are mistaken. From "perldoc perlsyn":
The "foreach" keyword is actually a synonym for the "for" keyword, so
you can use "foreach" for readability or "for" for brevity.
jue
------------------------------
Date: Mon, 08 Jan 2007 03:06:14 +0100
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: Iterator special variable $_
Message-Id: <50dn8nF1f977gU1@mid.individual.net>
Jürgen Exner wrote:
> Mark Hobley wrote:
>>Having done some googling, it appears that nesting a foreach loop
>>would have worked in the expected manner, because the iterator is
>>preserved on entry and exit from the loop, but this does not happen
>>with a for loop.
>
> You are mistaken.
Don't think so.
> From "perldoc perlsyn":
> The "foreach" keyword is actually a synonym for the "for" keyword, so
> you can use "foreach" for readability or "for" for brevity.
A foreach loop is a foreach loop no matter which keyword you use.
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
------------------------------
Date: Sun, 07 Jan 2007 21:24:12 -0500
From: Uri Guttman <uri@stemsystems.com>
Subject: Re: Iterator special variable $_
Message-Id: <x7lkke8ddf.fsf@mail.sysarch.com>
>>>>> "JE" == J.AN|rgen Exner <jurgenex@hotmail.com> writes:
JE> Mark Hobley wrote:
>> Having done some googling, it appears that nesting a foreach loop
>> would have worked in the expected manner, because the iterator is
>> preserved on entry and exit from the loop, but this does not happen
>> with a for loop.
JE> You are mistaken. From "perldoc perlsyn":
JE> The "foreach" keyword is actually a synonym for the "for" keyword, so
JE> you can use "foreach" for readability or "for" for brevity.
i think he means the difference between the foreach loop (over a list) and
the c style for loop. perlsyn states that the foreach loop variable is
localized unless it is declared right there with my. this happens for
named or $_. the c style for loop doesn't do anything and you have to
localize or use my vars yourself (even for $_).
The "foreach" loop iterates over a normal list value and sets the vari$B!>(B
able VAR to be each element of the list in turn. If the variable is
preceded with the keyword "my", then it is lexically scoped, and is
therefore visible only within the loop. Otherwise, the variable is
implicitly local to the loop and regains its former value upon exiting
the loop. If the variable was previously declared with "my", it uses
that variable instead of the global one, but it$B!G(Bs still localized to
the loop. This implicit localisation occurs only in a "foreach" loop.
now on top of that, you can use 'for' OR 'foreach' for either style of
loop. it is what is inside the () that actually determines the loop
style. the docs seem to use 'foreach' for the list loop and 'for' for
the c style loop. i do the same thing (but i RARELY use c style for
loops).
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.stemsystems.com
--Perl Consulting, Stem Development, Systems Architecture, Design and Coding-
Search or Offer Perl Jobs ---------------------------- http://jobs.perl.org
------------------------------
Date: Mon, 8 Jan 2007 05:42:11 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Mon Jan 8 2007
Message-Id: <JBJBuB.15Mo@zorch.sf-bay.org>
The following modules have recently been added to or updated in the
Comprehensive Perl Archive Network (CPAN). You can install them using the
instructions in the 'perlmodinstall' page included with your Perl
distribution.
Bundle-CPAN-1.855
http://search.cpan.org/~andk/Bundle-CPAN-1.855/
Bundle to optimize the behaviour of CPAN.pm
----
CPAN-1.88_68
http://search.cpan.org/~andk/CPAN-1.88_68/
query, download and build perl modules from CPAN sites
----
CPAN-1.88_69
http://search.cpan.org/~andk/CPAN-1.88_69/
query, download and build perl modules from CPAN sites
----
Convert-Cisco-0.04
http://search.cpan.org/~marko/Convert-Cisco-0.04/
Module for converting Cisco billing records
----
DBD-mysql-4.001
http://search.cpan.org/~capttofu/DBD-mysql-4.001/
MySQL driver for the Perl5 Database Interface (DBI)
----
File-Fetch-0.09_02
http://search.cpan.org/~kane/File-Fetch-0.09_02/
A generic file fetching mechanism
----
File-Next-0.38
http://search.cpan.org/~petdance/File-Next-0.38/
File-finding iterator
----
File-Next-OO-0.04
http://search.cpan.org/~borisz/File-Next-OO-0.04/
File-finding iterator Wrapper for File::Next::files function
----
Finance-Quote-1.13
http://search.cpan.org/~hampton/Finance-Quote-1.13/
Get stock and mutual fund quotes from various exchanges
----
POE-Component-CPAN-YACSmoke-0.08
http://search.cpan.org/~bingos/POE-Component-CPAN-YACSmoke-0.08/
bringing the power of POE to CPAN smoke testing.
----
POE-Component-Server-DNS-0.03
http://search.cpan.org/~bingos/POE-Component-Server-DNS-0.03/
non-blocking, concurrent DNS server component
----
POE-Component-Server-DNS-0.04
http://search.cpan.org/~bingos/POE-Component-Server-DNS-0.04/
non-blocking, concurrent DNS server component
----
POE-Component-Server-SimpleHTTP-1.14
http://search.cpan.org/~bingos/POE-Component-Server-SimpleHTTP-1.14/
Perl extension to serve HTTP requests in POE.
----
Parse-Syslog-Mail-0.10
http://search.cpan.org/~saper/Parse-Syslog-Mail-0.10/
Parse mailer logs from syslog
----
RPC-Object-0.22
http://search.cpan.org/~jwu/RPC-Object-0.22/
A lightweight implementation for remote procedure calls
----
Scope-Guard-0.03
http://search.cpan.org/~chocolate/Scope-Guard-0.03/
lexically scoped resource management
----
Sort-Maker-0.06
http://search.cpan.org/~uri/Sort-Maker-0.06/
A simple way to make efficient sort subs
----
Spreadsheet-ParseExcel-0.28
http://search.cpan.org/~szabgab/Spreadsheet-ParseExcel-0.28/
Get information from Excel file
----
WebService-YouTube-v1.0.0
http://search.cpan.org/~yoshida/WebService-YouTube-v1.0.0/
Perl interfece to YouTube
If you're an author of one of these modules, please submit a detailed
announcement to comp.lang.perl.announce, and we'll pass it along.
This message was generated by a Perl program described in my Linux
Magazine column, which can be found on-line (along with more than
200 other freely available past column articles) at
http://www.stonehenge.com/merlyn/LinuxMag/col82.html
print "Just another Perl hacker," # the original
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!
------------------------------
Date: 7 Jan 2007 21:40:19 -0800
From: ced@blv-sam-01.ca.boeing.com
Subject: Re: PERL5LIB variable does not work as expected
Message-Id: <1168234818.980201.6510@s80g2000cwa.googlegroups.com>
Ishmael wrote:
> I am trying to get Perl to recognize a module (Math::GMP) that is
> installed in a local directory, i.e. not the same directory as the rest
> of Perl. I've been trying to use the PERL5LIB environment variable to
> get Perl to search on the correct path, but it doesn't work. Here's
> what I mean:
>
>
> First I set (what I believe to be) the search path:
>
> setenv PERL5LIB
> /home/kstahl/PERL/Digest-1.15:/home/kstahl/PERL/Digest-SHA1-2.11:
> /home/kstahl/PERL/Scalar-List-Utils-1.19:/home/kstahl/PERL/gmp-4.2.1:
> /home/kstahl/PERL/Math-GMP-2.04:/home/kstahl/PERL/Math-GMP-2.04/lib:
> /home/kstahl/PERL/Math-GMP-2.04/blib:
> /home/kstahl/PERL/Math-GMP-2.04/lib/site_perl/5.6.1/sol2.sun4/auto/Math/GMP:
> /home/kstahl/PERL/Net-SSH-Perl-1.30
>
>
> Now I check to see if it finds the module.
>
> perl -MMath::GMP -e 'print "ok\n"'
>
>
> Answer: Nope, it's still looking in the perl installation directory.
>
> Can't load
> '/apps/gnu/perl_local/lib/site_perl/5.6.1/sol2.sun4/auto/Math/GMP/GMP.so'
> for
> module Math::GMP: ld.so.1: perl: fatal: libgmp.so.3: open failed: No such file
^^^^^^^^^^^^^^^^^^^^^^^^
Are you sure the install completed successfully....? The message
indicates
the external gmp library (default install is /usr/local/lib) is
unavailable. Either
the library is missing or there are permission problems.
--
Charles DeRykus
------------------------------
Date: 7 Jan 2007 15:09:11 -0800
From: "DJ Stunks" <DJStunks@gmail.com>
Subject: Re: regex
Message-Id: <1168211351.870692.115260@s34g2000cwa.googlegroups.com>
Arved Sandstrom wrote:
> "Abigail" <abigail@abigail.be> wrote in message
> > I'd use 'grep', not perl.
>
> Get over being so elitist.
wait a minute, you believe that using grep is pretentious? hahaha
someone better tell Dennis Ritchie.
-jp
------------------------------
Date: Mon, 08 Jan 2007 00:34:12 GMT
From: "Arved Sandstrom" <asandstrom@accesswave.ca>
Subject: Re: regex
Message-Id: <8kgoh.116338$rv4.15748@edtnps90>
"DJ Stunks" <DJStunks@gmail.com> wrote in message
news:1168211351.870692.115260@s34g2000cwa.googlegroups.com...
>
> Arved Sandstrom wrote:
>> "Abigail" <abigail@abigail.be> wrote in message
>> > I'd use 'grep', not perl.
>>
>> Get over being so elitist.
>
> wait a minute, you believe that using grep is pretentious? hahaha
>
> someone better tell Dennis Ritchie.
Assuming that the reader is *not* using the most common OS on the planet is
pretentious. Abigail's entire post was useless - she gave no information.
She informed everyone that she is sarcastic (in the case of the first
answer), and that she prefers UNIX/Linux (in the case of the second). At
least I assume she prefers UNIX/Linux. As it happens so do I, but I am a
professional software developer and don't assume everyone uses a flavour of
*nix.
There's a good example of Abigail's type of post in "Internet for Dummies".
It describes someone posting on a NG asking for help, and someone else posts
a reply saying that they don't have an answer...
_Using_ grep is not pretentious. Assuming that the poster is working on UNIX
or Linux is.
I respect what I've seen of Abigail's contributions, but somehow I think I'd
not like having her on any team that I was part of.
AHS
------------------------------
Date: Sun, 07 Jan 2007 21:25:57 -0500
From: Uri Guttman <uri@stemsystems.com>
Subject: Re: regex
Message-Id: <x7hcv28dai.fsf@mail.sysarch.com>
>>>>> "AS" == Arved Sandstrom <asandstrom@accesswave.ca> writes:
AS> I respect what I've seen of Abigail's contributions, but somehow I
AS> think I'd not like having her on any team that I was part of.
your loss. what abigail posts here and what kind of team member he is
are very different things. and abigail is a he.
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.stemsystems.com
--Perl Consulting, Stem Development, Systems Architecture, Design and Coding-
Search or Offer Perl Jobs ---------------------------- http://jobs.perl.org
------------------------------
Date: 7 Jan 2007 19:34:57 -0800
From: "Paul Lalli" <mritty@gmail.com>
Subject: Re: regex
Message-Id: <1168227297.900277.109920@q40g2000cwq.googlegroups.com>
Arved Sandstrom wrote:
> _Using_ grep is not pretentious. Assuming that the poster is working on UNIX
> or Linux is.
And assuming that any particular Windows user is too incompetant to
download cygwin is insulting.
Paul Lalli
------------------------------
Date: 08 Jan 2007 08:42:13 GMT
From: Abigail <abigail@abigail.be>
Subject: Re: regex
Message-Id: <slrneq40v7.e59.abigail@alexandra.abigail.be>
Arved Sandstrom (asandstrom@accesswave.ca) wrote on MMMMDCCCLXXVII
September MCMXCIII in <URL:news:vveoh.116055$rv4.12127@edtnps90>:
|| "Abigail" <abigail@abigail.be> wrote in message
|| news:slrneq1jr9.fg.abigail@alexandra.abigail.be...
|| > lucas (lstouder@teksavvy.com) wrote on MMMMDCCCLXXVI September MCMXCIII
|| > in <URL:news:28e3e$45a01650$cef8bf30$16302@TEKSAVVY.COM-Free>:
|| > ^^ I have this perl oneliner that I'm using to recognize certain file
|| > ^^ extentions in a url. This works, but I was wondering if any of you
|| > know of
|| > ^^ a better way to write this.
|| > ^^
|| > ^^ echo "http://fu.bar/test.jpg" | perl -ne 'print if((/\.jpg\n$/i)|
|| > ^^ (/\.bmp\n$/i)||(/\.png\n$/i));'
|| >
|| > Yeah.
|| >
|| > echo "http://fu.bar/test.jpg"
|| >
|| > is a lot simpler.
||
|| I'm gathering - this is just me, mind you - that his actual input is not
|| manually typing in echo "http://fu.bar/test.jpg".
||
|| > Or did you want to ask how to grep? In that case, I'd use 'grep', not
|| > perl.
||
|| That works on Windows, does it?
Well, last time I looked, Windows didn't come with perl either.
'grep' works on Windows, yes.
But that's not the point. The user was using 'echo', pipes, and single
quotes to delimit the Perl program. Both 'echo' and pipes are very
Unixy things, and Windows people are always complaining that single
quotes around a Perl one liner doesn't work on their shells.
|| Get over being so elitist.
I don't think assuming the user is using Unix and not Windows is elitist,
given how the user wrote his code.
Abigail
--
CHECK {print "another "}
INIT {print "Perl " }
END {print "Hacker\n"}
BEGIN {print "Just " }
------------------------------
Date: 08 Jan 2007 08:46:13 GMT
From: Abigail <abigail@abigail.be>
Subject: Re: regex
Message-Id: <slrneq416m.e59.abigail@alexandra.abigail.be>
Arved Sandstrom (asandstrom@accesswave.ca) wrote on MMMMDCCCLXXVIII
September MCMXCIII in <URL:news:8kgoh.116338$rv4.15748@edtnps90>:
() "DJ Stunks" <DJStunks@gmail.com> wrote in message
() news:1168211351.870692.115260@s34g2000cwa.googlegroups.com...
() >
() > Arved Sandstrom wrote:
() >> "Abigail" <abigail@abigail.be> wrote in message
() >> > I'd use 'grep', not perl.
() >>
() >> Get over being so elitist.
() >
() > wait a minute, you believe that using grep is pretentious? hahaha
() >
() > someone better tell Dennis Ritchie.
()
() Assuming that the reader is *not* using the most common OS on the planet is
() pretentious. Abigail's entire post was useless - she gave no information.
() She informed everyone that she is sarcastic (in the case of the first
() answer), and that she prefers UNIX/Linux (in the case of the second). At
() least I assume she prefers UNIX/Linux. As it happens so do I, but I am a
() professional software developer and don't assume everyone uses a flavour of
() *nix.
Well, I recognize a line of Unix when I see one. Besides, the OP posted
his posting using 'KNode'. If he's capable of installing KDE on Windows,
I'm sure he won't have much trouble installing 'grep'.
Abigail
--
perl -wle 'eval {die [[qq [Just another Perl Hacker]]]};; print
${${${@}}[$#{@{${@}}}]}[$#{${@{${@}}}[$#{@{${@}}}]}]'
------------------------------
Date: Mon, 8 Jan 2007 15:52:46 +0530
From: "rajendra" <rajendra.prasad@in.bosch.com>
Subject: To do parallel processing..
Message-Id: <ent5km$fje$1@news4.fe.internet.bosch.com>
Hello All,
I would like to know is it possible to process the array elements while the
array itself if being updated(storing elements) using some parallel
processing technology in perl...
With Rgds,
Raj
------------------------------
Date: 08 Jan 2007 10:27:07 GMT
From: Abigail <abigail@abigail.be>
Subject: Re: To do parallel processing..
Message-Id: <slrneq473s.ea2.abigail@alexandra.abigail.be>
rajendra (rajendra.prasad@in.bosch.com) wrote on MMMMDCCCLXXVIII
September MCMXCIII in <URL:news:ent5km$fje$1@news4.fe.internet.bosch.com>:
-: Hello All,
-:
-: I would like to know is it possible to process the array elements while the
-: array itself if being updated(storing elements) using some parallel
-: processing technology in perl...
Yes.
You could use threads and share an array, or you could use shared
memory and independent processes. Or you could tie an array to
a database table.
Now, I won't claim any solution is easy.
Abigail
--
perl -MLWP::UserAgent -MHTML::TreeBuilder -MHTML::FormatText -wle'print +(
HTML::FormatText -> new -> format (HTML::TreeBuilder -> new -> parse (
LWP::UserAgent -> new -> request (HTTP::Request -> new ("GET",
"http://work.ucsd.edu:5141/cgi-bin/http_webster?isindex=perl")) -> content))
=~ /(.*\))[-\s]+Addition/s) [0]'
------------------------------
Date: 8 Jan 2007 01:39:09 -0800
From: "Kimi" <shafa.fahad@gmail.com>
Subject: using 'Not' while greping using regex
Message-Id: <1168249149.307658.189190@42g2000cwt.googlegroups.com>
Hi,
I would like to know how to use 'Not' option while grepping using regex
I have a file "File1.txt" whose contents are as below
----
INFO: error did not occur
ERROR: an error has occured
INFO: the machine has been started
---
cat File1.txt | grep '\error' ----> returns both the lines which has
error
I would like to retrieve only the lines which has "error" but not
"Info"
I appreciate your help. Thanks in advance
Regards,
Fahad
------------------------------
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 V11 Issue 6
************************************