[6571] in Perl-Users-Digest
Perl-Users Digest, Issue: 196 Volume: 8
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Fri Mar 28 17:07:18 1997
Date: Fri, 28 Mar 97 14:00:19 -0800
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Fri, 28 Mar 1997 Volume: 8 Number: 196
Today's topics:
Re: ----- LOOKING FOR THAT EXTRA CASH? ----- <DarkElf@SLSoftware.reno.nv.us>
Re: Accessing the WWW via Perl <Jan.Krynicky@st.ms.mff.cuni.cz>
Re: CGI Perl: How to get FORM name?? (Matthew D. Healy)
Re: File Locking <dbenhur@egames.com>
Re: Has anyone heard the rumour that Microsoft have bou (Matthew D. Healy)
How to print to a handle that is a member of an object? (Petr Kolar)
Re: How to print to a handle that is a member of an obj (Andrew M. Langmead)
Re: interesting text formatting problem <philip@remove.crl.com>
Re: Looking for "HTML to Plain Text" perl script (Petr Prikryl)
Re: Perl Data Structures Cookbook. Wher did it go? <tchrist@mox.perl.com>
perl to fax interface ? (Paul S. Cutt)
Re: Problems Installing Perl 5 <pedrozzi@cscs.ch>
Re: regular expression for check lower case <tchrist@mox.perl.com>
Re: Text Justification (Michael Constant)
Unix and ease of use (WAS: Who makes more ...) (Michael Craft)
Re: Unix and ease of use (WAS: Who makes more ...) <dbenhur@egames.com>
Unix and ease of use (WAS: Who makes more ...) (Michael Craft)
Re: use and if test <tchrist@mox.perl.com>
Re: Using an "@" in a perl format (Matthew D. Healy)
win95 perl??? Where at? <rudedog@ozsome.com>
Re: win95 perl??? Where at? (Nathan V. Patwardhan)
Re: Wrapping text in perl <dbenhur@egames.com>
Digest Administrivia (Last modified: 8 Mar 97) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Sat, 29 Mar 1997 01:26:17 -0800
From: Jason Wallace <DarkElf@SLSoftware.reno.nv.us>
To: ecunha@foxboro.com
Subject: Re: ----- LOOKING FOR THAT EXTRA CASH? -----
Message-Id: <333CE039.2D7@SLSoftware.reno.nv.us>
Everardo Cunha wrote:
>
> E. Armstrong wrote:
> >
> > $$$YOU WILL NOT REGRET READING THIS$$$
> >
>
> I don't think that this is the place for such strange dealings!!!
You mean ILLEGAL dealings.... I'm getting tired of these idiots that
actually think this may work...
--
Jason
DarkElf@SLSoftware.reno.nv.us
------------------------------
Date: Tue, 25 Mar 1997 21:35:42 -0800
From: Jan Krynicky <Jan.Krynicky@st.ms.mff.cuni.cz>
To: Daniel Freeman <daniel@aksi.net>
Subject: Re: Accessing the WWW via Perl
Message-Id: <3338B5AE.4AC1@st.ms.mff.cuni.cz>
Daniel Freeman wrote:
>
> I've got this handy little package called getwww that allows me to access
> the WWW via Perl. Now I have a need to access a password protected web site
> (server directory protection; not a cgi-bin style password.)
>
> I can't figure out how to do this. GetWWW simply returns an error "not
> authorized" like the server would return if you tried to access the
> directory with the wrong password.
>
That's just how it works, you try to acces a page server replies
"Not authorised, this is site such and such" ,and you request again with
the propper login/password somewhere in the header. If you know you will
be asked for the password you may of course send it the first time
already.
I don't remember the propper syntax, but you should be able to find it
in the HTTP definition.
http://www.w3.org/pub/WWW/Protocols/HTTP/1.1/draft-ietf-http-v11-spec-07.txt
I don't know the module, but you should be able to add lines to the
header.
So if you get a "not authorised" response you will have to resend the
request
with the login/password.
> I'm starting to think that maybe there is a complex form of an URL which
> contains the username and password? If this is the case, I could give
> getWWW that URL instead of the normal one.
>
No it belongs to the header not the URL.
> Any ideas would be greatly appreciated.
>
> Best regards,
> Daniel Freeman
>
------------------------------
Date: Thu, 27 Mar 1997 11:58:19 -0500
From: Matthew.Healy@yale.edu (Matthew D. Healy)
Subject: Re: CGI Perl: How to get FORM name??
Message-Id: <Matthew.Healy-2703971158190001@pudding.med.yale.edu>
In article <5hbiqo$qdf@DGS.dgsys.com>, jete@dgs.dgsys.com (Jete Software
Inc.) wrote:
> I apoligize if this is more of an CGI question than perl.
>
> In the HTML code:
>
> <FORM NAME="name" ACTION="action" METHOD="POST">
First of all, this is NOT A PERL question, it's an HTML/CGI
question and should be posted in newsgroups pertaining to such
matters AFTER YOU HAVE READ THE REST OF THIS POST.
Not sure what you are asking. Your CGI script should have
available to it:
o the HTTP_REFERER sent by the browser, giving the URL of
the form.
o the SCRIPT_NAME provided by the server, telling the name
of the script now running.
o IF a submit button has both a name and a value defined in
its HTML, then that name/value pair will be sent just like
any other as either QUERY_STRING or POST data.
So far as I know, the NAME element in the FORM tag does nothing;
only in the submit button's INPUT tag does it have any effect.
>From your HTML, it looks to me as though you've confused the FORM
and INPUT tags...
There's more about CGI-related environment variables at:
http://ycmi.med.yale.edu/~healy/envlist.txt
And there are pointers to a number of cgi-related resources at:
http://paella.med.yale.edu/~healy/cgilinks.html
And you should go buy a good HTML book for more about forms and the
INPUT tag.
Hope this helps.
---------
Matthew.Healy@yale.edu
http://paella.med.yale.edu/~healy
"But I thought it was pointed at the rabbit *between* my feet!"
------------------------------
Date: Thu, 27 Mar 1997 14:00:30 -0800
From: Devin Ben-Hur <dbenhur@egames.com>
To: Rich Schramm <rdschramm@scripps.com>
Subject: Re: File Locking
Message-Id: <333AEDFE.17E7@egames.com>
[mail&post]
Rich Schramm wrote:
> I am concerned about blocked processes attempting to write to my file after
> I unlock it but before I close it.
As well you should be. You should close the file instead of
unlocking it (the close automatically releases the lock).
> Is it possible that blocked processes will either do an open on the file
> immediately after I unlock it but before it is closed? And what will keep
> two or more blocked processes from doing opens before any of them have time
> to do a lock?
Locks don't prevent opens, read, writes, or anything else.
All they do is prevent other locks. It's entirely advisory.
> Is there anyway to tell the open function to lock exclusive and the close
> function to unlock?
No for open, but you don't need to.
This is the default behavior of close.
> Do I have to worry about this at all if I lock and
> unlock immediately after the open and before the close?
It's not important to lock immediately after the open.
It is important to exclusive-lock *before* writing, or
to shared-lock before reading.
Don't unlock before close after writing; just do the close,
which will flush buffers and release the lock.
(BTW, there is no comp.lang.perl, I have removed it from
the newsgroup line)
HTH
--
Devin Ben-Hur <dbenhur@egames.com>
eGames.com, Inc. http://www.egames.com/
eMarketing, Inc. http://www.emarket.com/
"It's better to be lucky than good." -- Elizabeth Bourne
------------------------------
Date: Thu, 27 Mar 1997 11:32:57 -0500
From: Matthew.Healy@yale.edu (Matthew D. Healy)
Subject: Re: Has anyone heard the rumour that Microsoft have bought Perl?
Message-Id: <Matthew.Healy-2703971132570001@pudding.med.yale.edu>
In article <01bc3a03$d955c100$0600000a@salmon>, "Jonathan Tracey"
<jont@uunet.pipex.com> wrote:
> I have it on good authority that Microsoft have aquired the rights to
> future versions of Perl. If so how long before we get Visual Perl?
Um, the entire known universe already _has_ the rights to all present
versions of Perl, and probably also all future versions as well.
There's nothing to "buy."
---------
Matthew.Healy@yale.edu
http://paella.med.yale.edu/~healy
"But I thought it was pointed at the rabbit *between* my feet!"
------------------------------
Date: Tue, 25 Mar 1997 02:37:19 GMT
From: petr.kolar@vslib.cz (Petr Kolar)
Subject: How to print to a handle that is a member of an object?
Message-Id: <petr.kolar.262.33373A5F@vslib.cz>
Hello
How can I say
print $self->{'HANDLE'} "something"
------------------------------
Date: Fri, 28 Mar 1997 14:39:18 GMT
From: aml@world.std.com (Andrew M. Langmead)
Subject: Re: How to print to a handle that is a member of an object?
Message-Id: <E7rCpI.IDC@world.std.com>
petr.kolar@vslib.cz (Petr Kolar) writes:
>How can I say
>print $self->{'HANDLE'} "something"
print can take a filehandle, a scalar that evaluates to a filehandle,
or a block returning a scalar that evaluates to a filehandle. (See the
perlfunc man page for details.)
Which means that you can use the filehandle that you have stored as an
entry in the hash in the following two ways. (The fact that your hash
has been blessed into a class, and can be used as an object, does not
matter.)
$fh = $self->{HANDLE};
print $fh 'something';
or
print {$self->{HANDLE}} 'something';
You can also make use of the fact that perl's filehandles appear to be
FileHandle objects and can call FileHandle methods:
use FileHandle;
$self->{HANDLE}->print('something');
--
Andrew Langmead
------------------------------
Date: 28 Mar 1997 06:23:22 GMT
From: Phil Stripling <philip@remove.crl.com>
Subject: Re: interesting text formatting problem
Message-Id: <5hfo4q$mu1@nexp.crl.com>
On 26 Mar 1997, Eric Litman wrote:
> I have a rather interesting text formatting problem to solve. I have an
> application in which I need to strip HTML from a document to deliver
> it via email as plain text. When simply removing (<.+?>), I'm left with
> large, blank areas in the paragraphs where the HTML tags once were.
>
> What I'd like to do is remove the HTML codes while retaining the
> original paragraph "shape" (i.e. formatted to 75 columns).
>
I know it's not perl, but you could save the file through your web browser
as text. If you don't have 75 columns after saving it, run it through
emacs or BBEdit and wrap at 75 characters.
--
Phil Stripling |Sorry to make it difficult to reply
The Civilized Explorer |but you know what needs to be removed
http://www.cieux.com/~philip/
------------------------------
Date: 25 Mar 1997 12:49:30 GMT
From: prikryl@dcse.fee.vutbr.cz (Petr Prikryl)
Subject: Re: Looking for "HTML to Plain Text" perl script
Message-Id: <5h8hkq$etn$1@boco.fee.vutbr.cz>
Jim Stern (jstern@world.northgrum.com) wrote:
>Kathleen Ramsey wrote:
>>
>> Where can I find a "HTML to Plain Text" perl script.
>Try Gisle Aas's module HTML::FormatText. See CPAN.
If you do not insist on Perl script, you could try to convert the HTML
via Lynx textual browser (-dump option). I personally use the following
script to convert an HTML document to text file (Unix environment, but
the DOS port of Lynx also exists):
-------------------------------------------------------------
lynx -dump -nolist -underscore http://pes.eunet.cz/ascii/index.htm >$HOME/index.htm
-------------------------------------------------------------
--
Petr Prikryl (prikryl@dcse.fee.vutbr.cz) http://www.fee.vutbr.cz/~prikryl/
TU of Brno, Dept. of Computer Sci. & Engineering; tel. +420-(0)5-7275 218
------------------------------
Date: 28 Mar 1997 14:50:19 GMT
From: Tom Christiansen <tchrist@mox.perl.com>
Subject: Re: Perl Data Structures Cookbook. Wher did it go?
Message-Id: <5hglrb$rkt$1@csnews.cs.colorado.edu>
[courtesy cc of this posting sent to cited author via email]
In comp.lang.perl.misc,
Matthew.Healy@yale.edu (Matthew D. Healy) writes:
:Methinks Tom C's redirector robot must be slightly hosed at the moment,
:or else the mirror site ftp trees are NOT organized the same way as
:they used to be anymore!
Yes, it is. What's going on is a long story, but it has to do
with trying to redirect more than /CPAN/ and not getting
the right full path for info.
These though I just tested do work:
http://www.perl.com/perl/manual/pod/perldsc.html
http://www.perl.com/CPAN/doc/manual/html/pod/perldsc.html
Interestingly enough, so does "man perldsc". :-)
--tom
--
Tom Christiansen tchrist@jhereg.perl.com
Perl is designed to give you several ways to do anything, so
consider picking the most readable one.
--Larry Wall in the perl man page
------------------------------
Date: Fri, 28 Mar 1997 11:56:14 GMT
From: cutt@netcom.com (Paul S. Cutt)
Subject: perl to fax interface ?
Message-Id: <cuttE7r55q.BuE@netcom.com>
Is anyone aware of any perl to fax interface ? Does anyone have
any recommendations for fax software for windows NT ?
Thanks,
paul
------------------------------
Date: Fri, 28 Mar 1997 09:15:20 +0100
From: Nicola Pedrozzi <pedrozzi@cscs.ch>
Subject: Re: Problems Installing Perl 5
Message-Id: <333B7E18.41C6@cscs.ch>
Scott Henry wrote:
> Also, on IRIX 6.x,
If you are on Irix 6.x then you should have an 'inst'allable perl5
package from SGI, should be much easier (I don't remember from which
CD).
Ciao Nic
+-------------------------------------------------------------------------+
| Nicola Pedrozzi | Tel: +41(91)
610.83.28 |
| CSCS - Swiss Centre for Scientific Computing | Fax: +41(91)
610.82.82 |
| Via Cantonale - Galleria 2 | email:
pedrozzi@cscs.ch |
| 6928 Manno, Switzerland |
sgiadmin@cscs.ch |
+-------------------------------------------------------------------------+
------------------------------
Date: 28 Mar 1997 19:26:33 GMT
From: Tom Christiansen <tchrist@mox.perl.com>
Subject: Re: regular expression for check lower case
Message-Id: <5hh619$ae9$1@csnews.cs.colorado.edu>
[courtesy cc of this posting sent to cited author via email]
In comp.lang.perl.misc,
Jan Krynicky <Jan.Krynicky@st.ms.mff.cuni.cz> writes:
:/^[^A-Z]*$/ is true if there are no capitals in the string.
No it isn't. Consider the surname Ivard, for example.
I maintain that this has a capital letter in it, but your
check fails.
Also, you probably would have wanted a + not a * there.
--tom
--
Tom Christiansen tchrist@jhereg.perl.com
"If ease of use is the highest goal, we should all be driving golf carts."
--Larry Wall
------------------------------
Date: 27 Mar 1997 21:48:05 -0800
From: mconst@soda.CSUA.Berkeley.EDU (Michael Constant)
Subject: Re: Text Justification
Message-Id: <5hfm2l$rgr@soda.CSUA.Berkeley.EDU>
Christopher Wright <mrchristopher@inorbit.com> wrote:
>I came across a script on the web a few months ago for text
>justification which I have since lost track of. I never tried it but it
>appeared you fed it raw ascii and it spat out a nice text block with
>lines split and spaces inserted in the right places so text would appear
>left and right justified when put between >pre< tags (sic).
This is a difficult problem -- if you want it to look decent, you
have to deal with things like hypenation and balancing the amount
of text on nearby lines. This would be a rather large project if
someone hadn't already done it for you:
perl -0777pe 's/\\/\\\\/g; s/\./\&./g' | nroff
should work nicely. The perl bit isn't even necessary except to
quote any nroff formatting codes which happen to be in your file.
--
Michael Constant (mconst@soda.csua.berkeley.edu)
------------------------------
Date: 28 Mar 1997 02:15:27 -0800
From: jsi@idiom.com (Michael Craft)
Subject: Unix and ease of use (WAS: Who makes more ...)
Message-Id: <5hg5nv$9cd@idiom.com>
> : IMHO this answer contradicts to the basics of economics. Openess means
> : to a great extent equality and equality prohibits competition.
> : (communism). Competition rises only when differences exists and it's
> : the market (or the environment), who dictates which product is better.
>
> This works great when the public is informed. But this is not the
> case with the computer software industry.
OR ANY OTHER INDUSTRY!!!!
> case with the computer software industry. The vast majority of
> the market is people who are clueless when it comes to computers.
> In this kind of market the better product does not win, it's the
> product that appeals best to simpletons that wins.
Advertising is our biggest and most powerful industry!! And what is
the media but an advertising vesicle?
> And as to your comment about openness, there are many cases where
> open standards *help* rather than hurt competition. Imagine if
> different electric companies used different oscillation rates for
> their AC electricity. Now imagine home appliance makers having to
> decide whether or not to make their products work on 50 Hz, or
> 60 Hz, or 65 Hz, and so on. Whatever they end up choosing, the
> electric company that happens to use that Hz will end up dominating
> the market. Thus competition is crushed, due to an arbitrary
> detail that has nothing to do with the quality. This is what the
> computer software industry is like today.
>
> Here's another example. Imagine if each car manufacturer chose to
> use a different 'secret' formula for the gasoline for their cars,
> instead of the current case where all cars run on the same kind
> of gas.
A mini scam of sorts has been already carried out by the gasoline
dealers concerning supposed and necessary different mixtures of
their fuel; sure, individual ignorant consumers are the primary
victims of this, with the dealers and better adjusted consumers
benefiting, but why should this be allowed to continue?
> of gas. If you bought a Ford, you'd have to use gas stations that
> carried Ford gasoline. If you bought a Toyota, you'd have to use
> gas stations that carried Toyota gasoline, and so on. Consider
> if you wanted to buy a Porsche. Since most people don't have a
> Porsche, there would be very few gas stations that carried Porsche
> gas. Your Porsche would be virtually unusable because of this.
> Then you find all sorts of Ford escort owners telling you how their
> car is much better than your "out of date" Porsche. "Nobody uses
> Porsches anymore". "You can't even get gas for those things."
> "Why don't you get something more modern, like my Ford Escort?"
>
> If you were a car afficianado, wouldn't you find this a bit
> frustrating and annoying, knowing full well that the Porsche
> is better than an Escort, and it was trivial market forces
> that killed it?
>
> (For this example to work, you have to imagine that the formula
> for car's gasoline is secret and it is illegal to reverse-engineer
> it.)
>
> This is exactly what the computer software industry is like today.
>
> The right kind of open standards will *HELP* capitalism, not hurt it.
You want a more productive capitalism? Scrap the copyright and
patent laws and let the little guy, who has invented *everything*,
unleash his creativity and capitalism will have a fighting chance;
otherwise, socialism is better in all ways than capitalism, which
inevitably leads to monopolization if it weren't for interference
by the state.
The copyright laws are every bit of the economic protectionism
as a tariff or an import ban! And yet free market advocates want
the state to protect in one way and not the other!
> Closed standards like those that come from Redmond, Washington,
> reduce the ability for fair competition.
That's their job, "competition," making the market less fair;
where in the world is the market ever fair? Even the black
market is run on sound principles by capitalist standards, and
in fact, fits the Adam Smith mold better than the recognized
and protected markets, such as software, etc.
------------------------------
Date: Thu, 27 Mar 1997 14:38:19 -0800
From: Devin Ben-Hur <dbenhur@egames.com>
Subject: Re: Unix and ease of use (WAS: Who makes more ...)
Message-Id: <333AF6DB.3202@egames.com>
Stephane Plattner wrote:
> > It is openness that allows differences to exist. Look at the history of
> > PC hardware. The original IBM PC was open.
>
> What do you mean by that? The IBM PC was open? Was it possible to
> install any kind of hardware and software? Motorola processors, Amiga
> Operating system, etc? Probably not, the IBM PC was a closed solution,
> which became a de-facto standard. IEEE gave it the rest, so now every
> idiot is able to produce pieces and parts for the IBM/Intel machine.
When IBM released the original IBM PC, they made available
the BIOS source code and electrical & interface specs for the
system bus and peripherals. The OS was supplied by third parties
(MS, DR, p-System) who were free to license their software to
anyone.
That's what he meant by "open". All the crucial info needed
to build a functional clone or to add value by building
third party hardware and software to extend the original
system was public.
The IEEE had nothing to do with it.
And yes, it was possible to put a lot of junk in there.
I remember seeing 68000 boards that plugged into the
PC bus and ran unix. I remember IBM putting a whole 370
in a couple slots of the PC at one point :).
--
Devin Ben-Hur <dbenhur@egames.com>
eGames.com, Inc. http://www.egames.com/
eMarketing, Inc. http://www.emarket.com/
"It's better to be lucky than good." -- Elizabeth Bourne
------------------------------
Date: 28 Mar 1997 01:42:15 -0800
From: jsi@idiom.com (Michael Craft)
Subject: Unix and ease of use (WAS: Who makes more ...)
Message-Id: <5hg3pn$7ft@idiom.com>
> > > In the end Linux will bury MS. Linux is open. This means open
> > > competition. This means better products. LINUX RULES.
> >
> > IMHO this answer contradicts to the basics of economics. Openess means
> > to a great extent equality and equality prohibits competition.
> > (communism). Competition rises only when differences exists and it's
> > the market (or the environment), who dictates which product is better.
Open versions of Unix have been endorsed by communists everywhere;
we can at last stay away from the capitalist/fascist Microsoft dribble.
> It is openness that allows differences to exist. Look at the history of
> PC hardware. The original IBM PC was open. Competition in today's
Yes, the manual that came with the PC's was neat, including
a complete assembly printout of the BIOS.
> hardware market for the descendants of the PC is fierce, and the state
> of the art is always moving. By contrast, the PS/2 was closed, and it is
> now dead. In software, compare Unix to DOS/Windows. DOS was closed for
> the most part (in the sense that much of its internals were undocumented
> or otherwise hidden, and that source was not available), and only
> advanced when it had competition from the likes of DR-DOS. Unix, on the
> other hand, was and is much more open (not entirely, of course, but
> today with FreeBSD, Linux, and the like it is very open).
It's been reported that Cuba maintains an up to date software
library of titles from all over the world and serves out the
the binaries and docs the way public libraries serve out books;
if it was like that here there'd be more engineering creativity
and less money for lazy CEO's (and lawyers, politicians, etc.)
------------------------------
Date: 28 Mar 1997 21:17:51 GMT
From: Tom Christiansen <tchrist@mox.perl.com>
Subject: Re: use and if test
Message-Id: <5hhchv$f0v$1@csnews.cs.colorado.edu>
[courtesy cc of this posting sent to cited author via email]
In comp.lang.perl.misc,
bruce langlois <langlois@csn.net> writes:
:I can't seem to figure out why this construct won't work:
:
:use English;
:use strict if $PERL_VERSION >= 5.003;
Because "use" happens at compile time.
:All I get is a syntax error. If I put it in a block:
:
:if( $PERL_VERSION >= 5.003 ){use strict;}
:
:It works O.K.
No it doesn't. The pragmata are block-scoped, so it only
works inside the if *PLUS* it happened before the if was
executed, or not.
Think of use as a #include. Imagine this C code:
if (getuid() == 0) {
#include "whatever.h"
}
It's quite similar, except that the scope of the strict is only
that block anyway.
Perhaps we can get some better errors/warnings in for the
5.004 release, although it is possibly too close.
--tom
--
Tom Christiansen tchrist@jhereg.perl.com
I'm not writing any more tapes, ever. --Andrew Hume
------------------------------
Date: Thu, 27 Mar 1997 11:39:40 -0500
From: Matthew.Healy@yale.edu (Matthew D. Healy)
Subject: Re: Using an "@" in a perl format
Message-Id: <Matthew.Healy-2703971139400001@pudding.med.yale.edu>
In article <333A8B6E.5A1A@psu.edu>, jqw4@psu.edu wrote:
Have you tried replacing the @ with a backwhacked \@ as recommended
in the FAQ?
---------
Matthew.Healy@yale.edu
http://paella.med.yale.edu/~healy
"But I thought it was pointed at the rabbit *between* my feet!"
------------------------------
Date: Thu, 27 Mar 1997 16:50:07 -0800
From: Matthew Wagley <rudedog@ozsome.com>
Subject: win95 perl??? Where at?
Message-Id: <333B15BF.455E@ozsome.com>
I am looking for Perl 5 for windows95. I have been to www.Perl.com
and then onto software but can't seem to find the file i need. Your
help is appreciated.
Thanks in Advance.
Matthew
------------------------------
Date: 28 Mar 1997 06:37:06 GMT
From: nvp@shore.net (Nathan V. Patwardhan)
Subject: Re: win95 perl??? Where at?
Message-Id: <5hfoui$7im@fridge-nf0.shore.net>
Matthew Wagley (rudedog@ozsome.com) wrote:
: I am looking for Perl 5 for windows95. I have been to www.Perl.com
http://www.activeware.com -> get Perl NOT Perlscript, and make sure it's
the Intel binary, NOT the source. You're looking for version 5.003_07,
BTW.
--
Nathan V. Patwardhan
nvp@shore.net
------------------------------
Date: Thu, 27 Mar 1997 22:46:40 -0800
From: Devin Ben-Hur <dbenhur@egames.com>
To: Alan Bond <alanbond@sky.net>
Subject: Re: Wrapping text in perl
Message-Id: <333B6950.63FB@egames.com>
Alan Bond wrote:
> Yes, I am a perl novice.
So, we'll be gentle...
> Word wrap in perl?
Go to <URL:http://www.dejanews.com/> and type your subject
line into the search box. You should find dozens of previous
posts addressing your problem.
Alternatively, look up "wrap" in the index to Programming Perl.
HTH
--
Devin Ben-Hur <dbenhur@egames.com>
eGames.com, Inc. http://www.egames.com/
eMarketing, Inc. http://www.emarket.com/
"It's better to be lucky than good." -- Elizabeth Bourne
------------------------------
Date: 8 Mar 97 21:33:47 GMT (Last modified)
From: Perl-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 8 Mar 97)
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". 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 196
*************************************