[12555] in Perl-Users-Digest
Perl-Users Digest, Issue: 6156 Volume: 8
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Jun 28 12:07:22 1999
Date: Mon, 28 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 Mon, 28 Jun 1999 Volume: 8 Number: 6156
Today's topics:
Re: Short Circuit Query <jcreed@cyclone.jprc.com>
Re: Short Circuit Query <garethr@cre.canon.co.uk>
Re: Short Circuit Query (Dan Wilga)
Re: Short Circuit Query <garethr@cre.canon.co.uk>
Re: Socket Programming Help (Michel Dalle)
Statistics for comp.lang.perl.misc <gbacon@cs.uah.edu>
tests <toxid@rdtest.mm.atos-group.com>
Re: tests (Marcel Grunauer)
Re: Unlink == delete files? Why (on earth) is it called <upsetter@ziplink.net>
Re: Verifying an existing file with a PERL web script <swiftkid@bigfoot.com>
Re: Why is this broken... <uri@sysarch.com>
Re: Zeus Editor Version 3.0 Beta (Larry Rosler)
Zip Support For Perl <steve@pandich.com>
Special: Digest Administrivia (Last modified: 12 Dec 98 (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: 28 Jun 1999 10:08:38 -0400
From: Jason Reed <jcreed@cyclone.jprc.com>
Subject: Re: Short Circuit Query
Message-Id: <a13dzcwh7d.fsf@cyclone.jprc.com>
Steve Webb <S.Webb@ftel.co.uk> writes:
> if (fred_is_alive() || tom_is_alive()) {
> buddies_are_alive();
> }
> I'd like to structure the code this way and enter the if block if either
> tom or fred is alive, but have both functions execute. Am I stuck with a
> code restructure or is there some special operator I don't know about,
> or even a neat trick with parenthesis.
I think OWTDI is
if (fred_is_alive() | tom_is_alive()) {
buddies_are_alive();
}
'|' is bitwise or, as in C. Check perldoc perlop for details.
However, it might be cleaner just to do something like
my ($fred, $tom) = (fred_is_alive(), tom_is_alive());
if ($fred or $tom) {
buddies_are_alive();
}
---Jason
------------------------------
Date: Mon, 28 Jun 1999 15:02:33 GMT
From: Gareth Rees <garethr@cre.canon.co.uk>
Subject: Re: Short Circuit Query
Message-Id: <si9094bc6u.fsf@cre.canon.co.uk>
Steve Webb <S.Webb@ftel.co.uk> wrote:
> Is there a way round short circuit in perl ?
You can use `grep' for non-short-circuit `or':
if (grep $_, is_foo(), is_bar()) { ... }
and the appropriate De Morgan transformation for `and':
unless (grep !$_, is_foo(), is_bar()) { ... }
But it'd be a lot clearer to use subroutines like these:
sub every { for (@_) { return unless $_ } return 1 }
sub some { for (@_) { return 1 if $_ } return }
because you can then write
if (some is_foo(), is_bar()) { ... }
if (every is_foo(), is_bar()) { ... }
(The names `every' and `some' are from Common Lisp.)
--
Gareth Rees
------------------------------
Date: Mon, 28 Jun 1999 10:51:58 -0400
From: dwilgaREMOVE@mtholyoke.edu (Dan Wilga)
Subject: Re: Short Circuit Query
Message-Id: <dwilgaREMOVE-2806991051580001@wilga.mtholyoke.edu>
In article <37777E5A.A0E2AEEA@ftel.co.uk>, Steve Webb <S.Webb@ftel.co.uk> wrote:
> Is there a way round short circuit in perl ?
>
> if (fred_is_alive() || tom_is_alive()) {
> buddies_are_alive();
> }
>
> I'd like to structure the code this way and enter the if block if either
> tom or fred is alive, but have both functions execute. Am I stuck with a
> code restructure or is there some special operator I don't know about,
> or even a neat trick with parenthesis.
How about removing one character:
if (fred_is_alive() | tom_is_alive()) {
buddies_are_alive();
}
You might want to put a comment after this, though, so anyone who reads it
in the future doesn't think it's a typo.
Dan Wilga dwilgaREMOVE@mtholyoke.edu
** Remove the REMOVE in my address address to reply reply **
------------------------------
Date: Mon, 28 Jun 1999 15:15:13 GMT
From: Gareth Rees <garethr@cre.canon.co.uk>
Subject: Re: Short Circuit Query
Message-Id: <si7loobblq.fsf@cre.canon.co.uk>
Jason Reed <jcreed@cyclone.jprc.com> wrote:
> I think OWTDI is
>
> if (fred_is_alive() | tom_is_alive()) {
> buddies_are_alive();
> }
>
> '|' is bitwise or, as in C. Check perldoc perlop for details.
This approach is likely to fail, because, `|', `&' and `^' are not only
bitwise operations, but string bitwise operations too. They behave like
&& and || for canonical booleans (namely 1 and ''), but may fail for
generalized booleans. For example,
"0 but true" & "t" ==> "0"
!!"0 but true" & !!"t" ==> 1
--
Gareth Rees
------------------------------
Date: Mon, 28 Jun 1999 12:02:02 GMT
From: michel.dalle@usa.net (Michel Dalle)
Subject: Re: Socket Programming Help
Message-Id: <7l7oaf$jvm$1@news.mch.sbs.de>
In article <7l1n7n$o9m$1@nnrp1.deja.com>, kennedy_clark@my-deja.com wrote:
>I have been having problems getting the following
>script to work. When I connect to it using a web
>browser, the contents of the "page" is transfered,
>but the connection is not cleanly shut down (TCP
>uses the RESET bit instead of the FIN bit...
>resulting in a "this connection was hosed" type
>of message). I've tried everything. Help!
Well, I don't know about the TCP side, but :
1. your script does not read the HTTP request that the
browser sends you
2. your script does not send back any HTTP reply
3. the HTML code you send back is invalid
No wonder your browser has trouble handling the connection
correctly...
I would recommend that you read up on the HTTP protocol,
and examine some existing HTTP scripts (like webget or libwww
for example). They'll show you what the client sends (and expects).
For integration of Perl with Apache, have a look at mod_perl.
And I believe there's also a small HTTP server written entirely
in Perl somewhere...
Good luck,
Michel.
--
aWebVisit - extracts visitor information from WWW logfiles and shows
the top entry, transit, exit and 'hit&run' pages, the links followed
inside your website, the time spent per page, the visit duration etc.
For more details, see http://gallery.uunet.be/Michel.Dalle/awv.html
------------------------------
Date: 28 Jun 1999 15:49:30 GMT
From: Greg Bacon <gbacon@cs.uah.edu>
Subject: Statistics for comp.lang.perl.misc
Message-Id: <7l85ia$2f3$1@info2.uah.edu>
Following is a summary of articles spanning a 7 day period,
beginning at 21 Jun 1999 15:38:42 GMT and ending at
27 Jun 1999 07:06:09 GMT.
Notes
=====
- A line in the body of a post is considered to be original if it
does *not* match the regular expression /^\s{0,3}(?:>|:|\S+>|\+\+)/.
- All text after the last cut line (/^-- $/) in the body is
considered to be the author's signature.
- The scanner prefers the Reply-To: header over the From: header
in determining the "real" email address and name.
- Original Content Rating (OCR) is the ratio of the original content
volume to the total body volume.
- Find the News-Scan distribution on the CPAN!
<URL:http://www.perl.com/CPAN/modules/by-module/News/>
- Please send all comments to Greg Bacon <gbacon@cs.uah.edu>.
- Copyright (c) 1999 Greg Bacon.
Verbatim copying and redistribution is permitted without royalty;
alteration is not permitted. Redistribution and/or use for any
commercial purpose is prohibited.
Excluded Posters
================
perlfaq-suggestions\@(?:.*\.)?perl\.com
Totals
======
Posters: 533
Articles: 1709 (783 with cutlined signatures)
Threads: 490
Volume generated: 2909.1 kb
- headers: 1336.2 kb (26,761 lines)
- bodies: 1439.3 kb (47,044 lines)
- original: 983.2 kb (34,725 lines)
- signatures: 132.0 kb (2,842 lines)
Original Content Rating: 0.683
Averages
========
Posts per poster: 3.2
median: 1 post
mode: 1 post - 333 posters
s: 9.1 posts
Posts per thread: 3.5
median: 2.0 posts
mode: 2 posts - 127 threads
s: 4.2 posts
Message size: 1743.1 bytes
- header: 800.6 bytes (15.7 lines)
- body: 862.4 bytes (27.5 lines)
- original: 589.1 bytes (20.3 lines)
- signature: 79.1 bytes (1.7 lines)
Top 10 Posters by Number of Posts
=================================
(kb) (kb) (kb) (kb)
Posts Volume ( hdr/ body/ orig) Address
----- -------------------------- -------
89 146.7 ( 84.7/ 51.4/ 32.3) Tom Phoenix <rootbeer@redcat.com>
87 153.7 ( 70.6/ 73.0/ 44.3) David Cassell <cassell@mail.cor.epa.gov>
77 212.5 ( 63.3/139.7/125.4) tchrist@mox.perl.com (Tom Christiansen)
69 111.9 ( 43.2/ 60.9/ 33.9) lr@hpl.hp.com (Larry Rosler)
69 118.2 ( 52.3/ 53.4/ 30.8) Jonathan Stowe <gellyfish@gellyfish.com>
68 154.0 ( 79.3/ 46.4/ 43.4) abigail@delanet.com
55 79.6 ( 47.0/ 32.0/ 19.7) bart.lateur@skynet.be (Bart Lateur)
30 44.5 ( 27.1/ 16.3/ 8.3) nospam.newton@gmx.net (Philip 'Yes, that's my address' Newton)
26 43.1 ( 19.4/ 17.9/ 9.8) rjk@linguist.dartmouth.edu (Ronald J Kimball)
23 31.4 ( 19.1/ 12.2/ 4.2) Dave Cross <dave@dave.org.uk>
These posters accounted for 34.7% of all articles.
Top 10 Posters by Volume
========================
(kb) (kb) (kb) (kb)
Volume ( hdr/ body/ orig) Posts Address
-------------------------- ----- -------
212.5 ( 63.3/139.7/125.4) 77 tchrist@mox.perl.com (Tom Christiansen)
154.0 ( 79.3/ 46.4/ 43.4) 68 abigail@delanet.com
153.7 ( 70.6/ 73.0/ 44.3) 87 David Cassell <cassell@mail.cor.epa.gov>
146.7 ( 84.7/ 51.4/ 32.3) 89 Tom Phoenix <rootbeer@redcat.com>
118.2 ( 52.3/ 53.4/ 30.8) 69 Jonathan Stowe <gellyfish@gellyfish.com>
111.9 ( 43.2/ 60.9/ 33.9) 69 lr@hpl.hp.com (Larry Rosler)
79.6 ( 47.0/ 32.0/ 19.7) 55 bart.lateur@skynet.be (Bart Lateur)
52.8 ( 13.6/ 33.7/ 21.2) 16 webmaster@chatbase.com
44.5 ( 27.1/ 16.3/ 8.3) 30 nospam.newton@gmx.net (Philip 'Yes, that's my address' Newton)
43.1 ( 19.4/ 17.9/ 9.8) 26 rjk@linguist.dartmouth.edu (Ronald J Kimball)
These posters accounted for 38.4% of the total volume.
Top 10 Posters by OCR (minimum of five posts)
==============================================
(kb) (kb)
OCR orig / body Posts Address
----- -------------- ----- -------
1.000 ( 7.0 / 7.0) 8 Mike Dichirico <mdichirico@lamotionpictures.com>
0.999 ( 4.8 / 4.8) 7 andrew-johnson@home.com
0.935 ( 43.4 / 46.4) 68 abigail@delanet.com
0.898 (125.4 /139.7) 77 tchrist@mox.perl.com (Tom Christiansen)
0.892 ( 6.5 / 7.3) 6 fmgst+@pitt.edu (Filip M. Gieszczykiewicz)
0.779 ( 14.9 / 19.1) 18 portboy@home.com (Mitch)
0.721 ( 2.2 / 3.0) 6 Greg Bartels <gbartels@xli.com>
0.720 ( 3.4 / 4.7) 6 "Alan J. Flavell" <flavell@mail.cern.ch>
0.718 ( 2.9 / 4.1) 6 Kazuma <kazuma@my-deja.com>
0.716 ( 5.1 / 7.1) 6 Shane Fisher <fishers@lister.acm.wwu.edu>
Bottom 10 Posters by OCR (minimum of five posts)
=================================================
(kb) (kb)
OCR orig / body Posts Address
----- -------------- ----- -------
0.456 ( 2.8 / 6.1) 5 Andrzej Filip <anfi@bigfoot.com>
0.418 ( 1.9 / 4.6) 9 merlyn@stonehenge.com (Randal L. Schwartz)
0.416 ( 3.0 / 7.2) 8 planb@newsreaders.com (J. Moreno)
0.413 ( 2.6 / 6.4) 11 ada@fc.hp.com (Andrew Allen)
0.367 ( 1.9 / 5.3) 5 snowhare@long-lake.nihongo.org (Benjamin Franz)
0.346 ( 4.2 / 12.2) 23 Dave Cross <dave@dave.org.uk>
0.285 ( 1.3 / 4.5) 6 mr@kells.kells ()
0.267 ( 1.5 / 5.7) 9 Uri Guttman <uri@sysarch.com>
0.266 ( 1.8 / 6.8) 6 "Faisal Nasim" <swiftkid@bigfoot.com>
0.172 ( 1.7 / 10.0) 7 "Troy Knight" <troyknight@troyknight.eurobell.co.uk>
55 posters (10%) had at least five posts.
Top 10 Threads by Number of Posts
=================================
Posts Subject
----- -------
43 2 simple (not to me tho) questions
36 Statistics for comp.lang.perl.misc
32 A month behind using localtime(time) ?
24 Interpreting MS-ASCII - anyone have a filter?
23 Viral matters [completely off-topic]
19 Summing an array
17 Newbie - Perl books - which to get?
16 can you split a word into letters?
14 [q] Timing of a simple looping cycle PERL vs C
14 validating a regexp from a CGI form
These threads accounted for 13.9% of all articles.
Top 10 Threads by Volume
========================
(kb) (kb) (kb) (kb)
Volume ( hdr/ body/ orig) Posts Subject
-------------------------- ----- -------
69.6 ( 37.4/ 25.4/ 16.9) 36 Statistics for comp.lang.perl.misc
63.8 ( 36.1/ 22.8/ 13.4) 43 2 simple (not to me tho) questions
60.6 ( 26.0/ 31.7/ 23.0) 32 A month behind using localtime(time) ?
44.5 ( 24.2/ 18.7/ 13.0) 24 Interpreting MS-ASCII - anyone have a filter?
36.3 ( 5.8/ 29.4/ 27.9) 7 How to find and delete or replace a section in a line
35.6 ( 19.9/ 14.2/ 7.9) 23 Viral matters [completely off-topic]
33.1 ( 16.3/ 14.8/ 8.7) 16 can you split a word into letters?
31.2 ( 15.5/ 12.2/ 6.6) 19 Summing an array
29.4 ( 8.1/ 20.3/ 11.0) 9 Does Perl have a future?
29.2 ( 13.0/ 15.5/ 9.7) 17 Newbie - Perl books - which to get?
These threads accounted for 14.9% of the total volume.
Top 10 Threads by OCR (minimum of five posts)
==============================================
(kb) (kb)
OCR orig / body Posts Subject
----- -------------- ----- -------
0.951 ( 27.9/ 29.4) 7 How to find and delete or replace a section in a line
0.893 ( 6.2/ 7.0) 5 Very easy integer question
0.871 ( 6.9/ 7.9) 7 ASCII character coversion
0.840 ( 2.4/ 2.8) 6 Comparing two associative arrays
0.836 ( 7.4/ 8.8) 10 NT - Server Up time
0.804 ( 2.2/ 2.7) 6 Sub Routines Question, Parameters
0.791 ( 3.3/ 4.2) 5 Perl and Personal Web Server (Win98)
0.790 ( 2.8/ 3.5) 5 wwwboard on webjump.com
0.775 ( 11.1/ 14.4) 8 Index of an array-item
0.775 ( 2.1/ 2.8) 5 fork on NT
Bottom 10 Threads by OCR (minimum of five posts)
=================================================
(kb) (kb)
OCR orig / body Posts Subject
----- -------------- ----- -------
0.507 ( 1.8 / 3.5) 6 global vars
0.501 ( 5.4 / 10.8) 13 function to read a line & return it
0.498 ( 1.4 / 2.9) 6 How to access MS Access using perl/cgi/unix
0.495 ( 2.2 / 4.5) 7 Newbie:VBQ (Very Basic Question)
0.484 ( 2.0 / 4.2) 6 time question
0.453 ( 1.9 / 4.2) 9 A buggy intersection-method
0.442 ( 1.9 / 4.3) 6 "Slurping" a .jpg file
0.439 ( 1.0 / 2.4) 6 More fun with Hashes of Lists...
0.412 ( 2.7 / 6.5) 5 AIX, sar and perl (what am I doing wrong?)
0.263 ( 3.1 / 11.7) 5 Server Running Perl - Resources?
96 threads (19%) had at least five posts.
Top 10 Targets for Crossposts
=============================
Articles Newsgroup
-------- ---------
26 comp.lang.awk
20 comp.lang.perl.modules
17 comp.lang.perl
14 alt.perl
12 comp.os.linux.misc
8 comp.lang.java.databases
8 comp.unix.aix
8 comp.databases.oracle.server
8 comp.lang.perl.tk
4 comp.unix.questions
Top 10 Crossposters
===================
Articles Address
-------- -------
7 "Code Development Inc." <jerms@iname.com>
7 bart.lateur@skynet.be (Bart Lateur)
6 abigail@delanet.com
6 techsup@datascan.co.uk
6 nospam.newton@gmx.net (Philip 'Yes, that's my address' Newton)
5 Shane Fisher <fishers@lister.acm.wwu.edu>
5 lr@hpl.hp.com (Larry Rosler)
4 Matt Sergeant <matt.sergeant@ericsson.com>
4 Jonathan Stowe <gellyfish@gellyfish.com>
4 Lee Fesperman <firstsql@ix.netcom.com>
------------------------------
Date: Mon, 28 Jun 1999 15:48:09 +0200
From: "moi" <toxid@rdtest.mm.atos-group.com>
Subject: tests
Message-Id: <824F4EA25713D311B1740000D11A1E0554A15C@grp-nt1.segin.com>
Can you send me back e-mails?
Pouvez-vous m'envoyer des mails en retour???
Please forgive me to post in your group... It's for some tests..
Excusez-moiu d'envoyer dans votre groupe, c'est pour des tests
I need to improve my own smtp server.
J'ai besoin de tester mon propre serveur SMTP (montee en charge, cas
particuliers)
Thanks a lot!
Gasp.
gaspard@rdtest.mm.atos-group.com
------------------------------
Date: Mon, 28 Jun 1999 14:50:11 GMT
From: marcel.grunauer@lovely.net (Marcel Grunauer)
Subject: Re: tests
Message-Id: <37798b5d.20619729@enews.newsguy.com>
On Mon, 28 Jun 1999 15:42:26 +0200, "moi"
<toxid@rdtest.mm.atos-group.com> wrote:
>Can anyone send me back e-mails?
>
>Please forgive me to post in your group... It's for some tests..
>I need to improve my own smtp server.
I could send him a lot of emails. In fact, maybe an archive of last
month's clpm postings comes to mind. Or some subscriptions to some
high-volume mailing lists.
Marcel
------------------------------
Date: Mon, 28 Jun 1999 15:52:39 GMT
From: Scratchie <upsetter@ziplink.net>
Subject: Re: Unlink == delete files? Why (on earth) is it called unlink?
Message-Id: <bTMd3.115$6M6.40032@news.shore.net>
Mats Pettersson <mats.pettersson@falukuriren.se> wrote:
: After searching for a built in file-delete function in despair, i was
: surprised (although i probably shouldn't be) to find it in 'unlink'.
: Why such an unlogical name? Does it really delete files (as freeing up
: disk space), or am i missing something of great importance here?
: Feel free to enlighten me, please!
The reasons have to do (I believe) with the file system used by Unix and
its variants (which some on this ng apparently believe is so obvious and
self-evident that it doesn't need to be described).
In Unix, you can have more than one link to a single file. This allows you
to have a single file "live" in two or more different directories, or to
live under different names in the same directory. It always seemed kind of
weird to me, coming from a non-Unix background, but that's the way it
works (note that this is different from a symbolic link, which is more
akin to a "shortcut" on Windows or an "alias" on a Mac).
Anyway, when you "unlink" a file, you are just removing one of the
(possibly multiple) names for that file. When you remove the last link,
the file is deleted.
--Art
--
--------------------------------------------------------------------------
National Ska & Reggae Calendar
http://www.agitators.com/calendar/
--------------------------------------------------------------------------
------------------------------
Date: Mon, 28 Jun 1999 19:49:25 +0500
From: "Faisal Nasim" <swiftkid@bigfoot.com>
Subject: Re: Verifying an existing file with a PERL web script
Message-Id: <7l95a9$3uo7@news.cyber.net.pk>
Try:
$file = "../file";
( $e , $w ) = ( -e "$file.doc" , -e "$file.xls" );
print "Excel file exists\n" if $e;
print "Word file exists\n" if $w;
print "None exists!\n" unless $e || $w;
--
Faisal Nasim (the Whiz Kid)
Web: http://wss.hypermart.net/
AOL: Whiz Swift ICQ: 4265451
FAX: (815) 846-2877
<frm_79@my-deja.com> wrote in message news:7l7tdi$gr1$1@nnrp1.deja.com...
> Hello,
>
> I have a script that needs to verify that a file exists in either Excel
> format (.xls) or Word format (.doc) inside a directory, and give a link
> to it. What I have it do is open the file with the 'open
<snip>
------------------------------
Date: 28 Jun 1999 11:15:02 -0400
From: Uri Guttman <uri@sysarch.com>
Subject: Re: Why is this broken...
Message-Id: <x7so7c5pc9.fsf@home.sysarch.com>
>>>>> "A" == Abigail <abigail@delanet.com> writes:
A> Mitch (portboy@home.com) wrote on MMCXXVII September MCMXCIII in
A> <URL:news:3777136D.6F715406@home.com>:
A> || Does anyone have any ideas why this doesn't work? I'm still totally stumped
A> || as to why it is broken?????? I've put in print statements all over the
A> || place, but can't figure out why it is writing just the portion I want to the
A> || file, and wiping everything else out.
A> use ESP;
A> my $program = ESP -> fetch ("Mitches program", YOU_KNOW_WHERE_TO_GET_IT);
A> print "You have a ", ($program -> error_types) [0], " error on line ",
A> ($program -> lines_with_errors) [0], "\n";
A> __END__
i knew you were going to post that.
and the module name is PSI::ESP. but there is no published api, you have
to divine it.
:-)
uri
--
Uri Guttman ----------------- SYStems ARCHitecture and Software Engineering
uri@sysarch.com --------------------------- Perl, Internet, UNIX Consulting
Have Perl, Will Travel ----------------------------- http://www.sysarch.com
The Best Search Engine on the Net ------------- http://www.northernlight.com
------------------------------
Date: Mon, 28 Jun 1999 07:14:47 -0700
From: lr@hpl.hp.com (Larry Rosler)
Subject: Re: Zeus Editor Version 3.0 Beta
Message-Id: <MPG.11e12332d6ef6322989c64@nntp.hpl.hp.com>
[Posted and a courtesy copy sent.]
In article <377776B0.1C34@iname.com> on Mon, 28 Jun 1999 23:20:48 +1000,
Jussi Jumppanen <xidicone@iname.com> says...
> Zeus for Windows Version 3.0 Beta Release
> -----------------------------------------
>
...
> Jussi Jumppanen
> Author of: Zeus for Windows, Win32 (Brief, WordStar, Emacs) Text Editor
> "The C/C++, Java, HTML, Pascal, Cobol, Fortran programmers text editor"
> Home Page: http://ourworld.compuserve.com/homepages/jussi/
You spammed a Perl newsgroup with your ad, but didn't even have the
sense to include Perl in the list of languages you claim to support.
Silly you!
--
(Just Another Larry) Rosler
Hewlett-Packard Laboratories
http://www.hpl.hp.com/personal/Larry_Rosler/
lr@hpl.hp.com
------------------------------
Date: Mon, 28 Jun 1999 14:53:12 GMT
From: Stephen Pandich <steve@pandich.com>
Subject: Zip Support For Perl
Message-Id: <7l828j$ipb$1@nnrp1.deja.com>
Is anyone aware of support for PKZip type ".zip" files?
I am developing a multi-platform perl program and need to be able to use
".zip" files from all systems.
Thanks alot!
-Steve
------------------
Stephen Pandich
steve@pandich.com
www.pandich.com
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
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 6156
**************************************