[12544] in Perl-Users-Digest
Perl-Users Digest, Issue: 6144 Volume: 8
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Sun Jun 27 12:07:15 1999
Date: Sun, 27 Jun 99 09:00:20 -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 Sun, 27 Jun 1999 Volume: 8 Number: 6144
Today's topics:
Re: "Learning Perl" exercises (Philip 'Yes, that's my address' Newton)
Re: CGI and SSI (Casey R Tweten)
chmod external file <vdlugt@kabelfoon.nl>
Re: Comparing two associative arrays <rick.delaney@home.com>
Re: Comparing two associative arrays (Bart Lateur)
Re: Conveting plain-text username and password files (Frank Hahn)
difference between Registry and Tie-Registry <gio98dr@yahoo.com>
Re: How to store hashes <tchrist@mox.perl.com>
Re: How to store hashes <tchrist@mox.perl.com>
Re: In Mountain View did Larry Wall <tchrist@mox.perl.com>
Re: In Mountain View did Larry Wall (Larry Rosler)
Re: In Mountain View did Larry Wall (Bart Lateur)
Re: In Mountain View did Larry Wall <tchrist@mox.perl.com>
Re: Learning Perl exercises using reverse (Philip 'Yes, that's my address' Newton)
Re: Novice asks: what's the equivalent perl command to (Larry Rosler)
NT network admin with PERL <gio98dr@yahoo.com>
Read news by Broswer <tanya@i-cable.com>
Re: Read news by Broswer (Alastair)
Re: Read news by Broswer <mike@crusaders.no>
regex question <Gened@ohinter.net>
Re: regex question (Larry Rosler)
Removing spaces from string <vdlugt@kabelfoon.nl>
Re: Removing spaces from string (Alastair)
Re: Unlink == delete files? Why (on earth) is it called (Ook!)
Web NewsReader <tanya@i-cable.com>
Re: weirdness with Netcom (Laar)
What's a good BBS cgi program? <michael@cermak.com>
zmodem transfer module available? (GEMINI)
Special: Digest Administrivia (Last modified: 12 Dec 98 (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Sun, 27 Jun 1999 13:30:16 GMT
From: nospam.newton@gmx.net (Philip 'Yes, that's my address' Newton)
Subject: Re: "Learning Perl" exercises
Message-Id: <3776137d.236658942@news.nikoma.de>
On Sun, 27 Jun 1999 04:58:15 GMT, Mike Dichirico
<mdichirico@lamotionpictures.com> wrote:
>On page 57, exercise #1, it says to wrte a program that reads a list of
>strings on seperate lines and prints out the list in reverse order.
[...]
>When I run the program, it asks for me to enter a string like it's
>supposed to. But after hitting <Enter>, the program just hangs there.
>I have to hit <Ctrl> + Z to get back to my command prompt.
That's because you just gave it one string. It wants a whole list of
strings, each on a separate line.
Ctrl+Z (on DOS etc. systems) gives the end-of-file condition to the
reading program.
Cheers,
Philip
--
Philip Newton <nospam.newton@gmx.net>
------------------------------
Date: Sun, 27 Jun 1999 13:12:21 GMT
From: crt@highvision.com (Casey R Tweten)
Subject: Re: CGI and SSI
Message-Id: <37762304.169983373@news.kiski.net>
On Sun, 27 Jun 1999 12:26:36 +0200, "Pippo" <pippo@landptek.com> wrote:
:Hello,
:
:I use Apache as web server. How can I configure it to recognize SSI commands
:in dynamic pages generated on the fly by perl CGI script.
This is _really_ not a Perl question, ask elsewhere.
httpd.conf
--
Casey Tweten HighVision Associates
Web Developer http://www.highvision.com
<joke> This is 100% certified,
virus and bug free code </joke>
------------------------------
Date: Sun, 27 Jun 1999 15:24:12 +0200
From: "Eric v.d. Lugt" <vdlugt@kabelfoon.nl>
Subject: chmod external file
Message-Id: <7l58mb$fpc$1@news.kabelfoon.nl>
I have this script, which write's into an HTMLfile.
The problem is that the HTML file's chmodded 666.
What I want to do is that the script chmod's the HTML to 666 when it has to
write to it
and restores it to 755 when it's finished.
Could anyone tell me how to make this work?
please CC to vdlugt@kabelfoon.nl
Thanks,
Eric
------------------------------
Date: Sun, 27 Jun 1999 14:38:55 GMT
From: Rick Delaney <rick.delaney@home.com>
Subject: Re: Comparing two associative arrays
Message-Id: <37763742.F95A2505@home.com>
[posted & mailed]
Philip 'Yes, that's my address' Newton wrote:
>
> On Sun, 27 Jun 1999 02:41:02 GMT, Rick Delaney <rick.delaney@home.com>
> wrote:
>
> >Andrew Allen wrote:
> >>
> >>
> >> "@{[%hash1]}" eq "@{[%hash2]}"
> >>
> >> almost works (but can you explain why?).
> >
> >Nope, I give up. Can you? Would you?
>
> Here's my attempt:
[good explanation of the part I get snipped]
Okay, now explain the part where if %hash1 has all the same entries as
%hash2, %hash1 in list context will produce those elements in the same
order as %hash2 in list context.
--
Rick Delaney
rick.delaney@home.com
------------------------------
Date: Sun, 27 Jun 1999 15:27:49 GMT
From: bart.lateur@skynet.be (Bart Lateur)
Subject: Re: Comparing two associative arrays
Message-Id: <3776426b.3875343@news.skynet.be>
Rick Delaney wrote:
>Okay, now explain the part where if %hash1 has all the same entries as
>%hash2, %hash1 in list context will produce those elements in the same
>order as %hash2 in list context.
Because to the human beholder, the order of the keys LOOKS random, but
in fact it is not. The exact order is determined by the hashing
function. "Pseudo-random" is more like it. Therefore, if all keys are
identical, their order (in "foreach (keys %hash)", for example) will be
the same, too.
Bart.
------------------------------
Date: Sun, 27 Jun 1999 15:44:05 GMT
From: fhahn@zdnetmail.com (Frank Hahn)
Subject: Re: Conveting plain-text username and password files
Message-Id: <slrn7ncdp5.69s.fhahn@bart.fcjc.com>
On 25 Jun 1999 20:39:27 GMT, William Burrow <aa126@DELETE.fan.nb.ca> wrote:
>On Fri, 25 Jun 1999 17:14:39 +0000,Kerry J. Cox <kjcox@vii.com> wrote:
>>Thanks. Please email me as well as I don't always have the time to
>>check these newsgroups.
>
>Please take the time to check, just use the search or scoring facility
>of your reader to find the subject line.
>
There is also http://www.deja.com for those that are newsreader
impaired! ;)
Sorry for the waste of bandwidth.
--
Frank Hahn
H. L. Mencken's Law:
Those who can -- do.
Those who can't -- teach.
Martin's Extension:
Those who cannot teach -- administrate.
------------------------------
Date: Sun, 27 Jun 1999 14:27:13 GMT
From: "Giovanni Davila" <gio98dr@yahoo.com>
Subject: difference between Registry and Tie-Registry
Message-Id: <5xqd3.24364$NY6.8153@news.rdc1.sfba.home.com>
What's the difference between the two? Are both supported?
------------------------------
Date: 27 Jun 1999 07:35:58 -0700
From: Tom Christiansen <tchrist@mox.perl.com>
Subject: Re: How to store hashes
Message-Id: <377628be@cs.colorado.edu>
[courtesy cc of this posting mailed to cited author]
Cursed to annoy himself and others by using the crapware Microsoft Outlook
Express 5.00.2615.200 to post to in comp.lang.perl.misc, "Faisal Nasim"
<swiftkid@bigfoot.com> writes:
:DB_File
:AnyDBM_File
:depricated dbmopen() dbmclose()
:
:Read html help pages in your perl\html\lib directory.
:
:=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
That is not a valid signature separator. You need "\n-- \n" there.
Note the newline.
[5 lines of signature deleted]
You mean 4 lines.
Now there's this:
:Timo Hummel <thummel@junior-net.de> wrote in message
:news:377559E3.5CF8101F@junior-net.de...
:> Hi,
:>
:> I want to store hashes in a file. What's the best way to do this? I'm
:> fairly new to Perl, and I haven't found a good beginner document for
:> perl yet (the documentation which came with ActiveState Perl for Win32
:> is hard to use).
:>
:> Thanks for any help
:> Timo
:>
:
:
This is the thing that's inane. I've sent you private mail about
this, and you still do it, so let's talk about it in public. Opproprium
has to be good for something.
Please trim and summarize and interleave.
Please do not blindingly quote the entire message. *EVER*
Please put your quote before the message you're answering.
--tom
--
I'll say it again for the logic impaired. --Larry Wall
------------------------------
Date: 27 Jun 1999 07:39:37 -0700
From: Tom Christiansen <tchrist@mox.perl.com>
Subject: Re: How to store hashes
Message-Id: <37762999@cs.colorado.edu>
[courtesy cc of this posting mailed to cited author]
In comp.lang.perl.misc, bart.lateur@skynet.be (Bart Lateur) writes:
:I would use a tab-delimited file.
I think not. NB:
"quote-delimited-stuff"
"hyphen-separated-stuff"
"bang-terminated-stuff"!
--tom
--
I might be able to shoehorn a reference count in on top of the numeric
value by disallowing multiple references on scalars with a numeric value,
but it wouldn't be as clean. I do occasionally worry about that. --lwall
------------------------------
Date: 27 Jun 1999 07:28:34 -0700
From: Tom Christiansen <tchrist@mox.perl.com>
Subject: Re: In Mountain View did Larry Wall
Message-Id: <37762702@cs.colorado.edu>
[courtesy cc of this posting mailed to cited author]
In comp.lang.perl.misc, Jonathan Stowe <gellyfish@gellyfish.com> writes:
:The lawyers of The Estate of Percy Bysshe Shelly will be contacting you ..
Oh? Coleridge sold them the rights? :-)
--tom
--
I am a little more weird today than normal. --Andrew Hume
------------------------------
Date: Sun, 27 Jun 1999 07:14:49 -0700
From: lr@hpl.hp.com (Larry Rosler)
Subject: Re: In Mountain View did Larry Wall
Message-Id: <MPG.11dfd19d5bacbe69989c55@nntp.hpl.hp.com>
[Posted and a courtesy copy sent.]
In article <7l3nvc$54t$1@gellyfish.btinternet.com> on 26 Jun 1999
23:33:00 -0000, Jonathan Stowe <gellyfish@gellyfish.com> says...
> On 26 Jun 1999 16:45:41 -0700 Tom Christiansen wrote:
> > In Mountain View did Larry Wall
> > Sedately launch a quiet plea:
>
> The lawyers of The Estate of Percy Bysshe Shelly will be contacting you ..
Oh, my. What happened to the much-vaunted English education system?
Samuel Taylor Coleridge
Kubla Kahn
(or, A Vision in a Dream)
In Xanadu did Kubla Kahn
A stately pleasure dome decree:
Where Alph, the sacred river, ran
Through caverns measureless to man
Down to a sunless sea.
So twice five miles of fertile ground
With walls and towers were girdled round,
And there were gardens bright with sinuous rills,
Where blossomed many an incense-bearing tree;
And here were forests ancient as the hills,
Enfolding sunny spots of greenery.
But oh! that deep romantic chasm which slanted
Down the green hill athwart a cedern cover!
A savage place! as holy and enchanted
As e're beneath a waning moon was haunted
by woman wailing for her demon lover!
And from this chasm with ceaseless turmoil seething,
As if this earth in fast thick pants were breathing,
A mighty fountain momently was forced:
Amid whose swift, half-intermitted burst
Huge fragments vaulted like rebounding hail
Or chaffy grain beneath the thresher's flail:
And 'mid these dancing rocks at once and ever,
It flung up momently the sacred river!
Five miles meandering with mazy motion
Through wood and dale the sacred river ran
Then reached the caverns measureless to man,
And sank in tumult to a lifeless ocean.
And 'mid this tumult Kubla heard from far
Ancestral voices prophesying war!
The shadow of the dome of pleasure
Floated midway on the waves,
Where was heard with mingled measure
From the fountain and the caves.
It was a miracle of rare device,
A sunny pleasure-dome with caves of ice!
A damsal with a dulcimer
In a vision I once saw:
It was an Abyssinian maid,
And on her dulcimer she played,
Singing of Mount Abora.
Could I revive within me
Her symphony and song
To such a deep delight 'twould win me,
That with music loud and long
I would build that dome in air,
That sunny dome! Those caves of ice!
And all who heard should see it there,
And all should cry, Beware! Beware!
His flashing eyes! His floating hair!
Weave a circle round him thrice,
And close your eyes with holy dread,
For he on honey-dew hath fed
And drunk the milk of Paradise.
--
(Just Another Larry) Rosler
Hewlett-Packard Laboratories
http://www.hpl.hp.com/personal/Larry_Rosler/
lr@hpl.hp.com
------------------------------
Date: Sun, 27 Jun 1999 14:26:43 GMT
From: bart.lateur@skynet.be (Bart Lateur)
Subject: Re: In Mountain View did Larry Wall
Message-Id: <37763463.283467@news.skynet.be>
Tom Christiansen wrote:
>In comp.lang.perl.misc, Jonathan Stowe <gellyfish@gellyfish.com> writes:
>:The lawyers of The Estate of Percy Bysshe Shelly will be contacting you ..
>
>Oh? Coleridge sold them the rights? :-)
Whatever. They want 50% of whatever you earn by posting this in clpm.
Bart.
------------------------------
Date: 27 Jun 1999 08:49:55 -0700
From: Tom Christiansen <tchrist@mox.perl.com>
Subject: Re: In Mountain View did Larry Wall
Message-Id: <37763a13@cs.colorado.edu>
[courtesy cc of this posting mailed to cited author]
In comp.lang.perl.misc,
bart.lateur@skynet.be (Bart Lateur) writes:
:Whatever. They want 50% of whatever you earn by posting this in clpm.
I think not. It's public domain, but even if it weren't, it's still parody.
--tom
--
Say aver, but ever, fever,
Neither, leisure, skein, deceiver.
------------------------------
Date: Sun, 27 Jun 1999 13:30:17 GMT
From: nospam.newton@gmx.net (Philip 'Yes, that's my address' Newton)
Subject: Re: Learning Perl exercises using reverse
Message-Id: <377613f1.236775439@news.nikoma.de>
On Sun, 27 Jun 1999 12:30:58 +0500, "Faisal Nasim"
<swiftkid@bigfoot.com> wrote:
>Try this:
>
[snip]
That's not what the exercise said to do. Your code only reads *one*
string and then reverses it letter-by-letter. The exercise asked for
code that reads a *list* of strings and then outputs the lines in
reverse order, but with each line having its letters in the original
order.
Cheers,
Philip
--
Philip Newton <nospam.newton@gmx.net>
------------------------------
Date: Sun, 27 Jun 1999 07:37:38 -0700
From: lr@hpl.hp.com (Larry Rosler)
Subject: Re: Novice asks: what's the equivalent perl command to #include "personalfile.h"
Message-Id: <MPG.11dfd707c71e94aa989c56@nntp.hpl.hp.com>
In article <7l5293$5qm$1@gellyfish.btinternet.com> on 27 Jun 1999
11:34:59 -0000, Jonathan Stowe <gellyfish@gellyfish.com> says...
> On Sun, 27 Jun 1999 17:56:38 +0800 Sleiman wrote:
> > The question is in the subject. Thanks for the response.
...
> require
> use
> do
>
> To see which will best suit your purposes.
Here's Yet Another possibility:
#include "personalfile.h"
Don't forget the -P flag, though, or nothing much is likely to happen.
--
(Just Another Larry) Rosler
Hewlett-Packard Laboratories
http://www.hpl.hp.com/personal/Larry_Rosler/
lr@hpl.hp.com
------------------------------
Date: Sun, 27 Jun 1999 14:26:44 GMT
From: "Giovanni Davila" <gio98dr@yahoo.com>
Subject: NT network admin with PERL
Message-Id: <Ewqd3.24363$NY6.8152@news.rdc1.sfba.home.com>
How can I extract information from my domain members using Perl scripts? Is
the Win32::Registry my only way? For example, I need to know the NT service
pack my users have. I basically need like a hardware/software inventory and
I'm looking into PERL to help me get the information and pass it to
MS-Access.
------------------------------
Date: Sun, 27 Jun 1999 21:20:57 +0800
From: Tanya <tanya@i-cable.com>
Subject: Read news by Broswer
Message-Id: <37762539.B9D065D8@i-cable.com>
how i can read news in a newsgroup
by using a perl script in a broswer?
THX
------------------------------
Date: Sun, 27 Jun 1999 14:12:06 GMT
From: alastair@calliope.demon.co.uk (Alastair)
Subject: Re: Read news by Broswer
Message-Id: <slrn7ncfu5.1lk.alastair@calliope.demon.co.uk>
Tanya <tanya@i-cable.com> wrote:
>how i can read news in a newsgroup
>by using a perl script in a broswer?
I can't think of something worse than reading news with a web browser but ...
If you're going to try this, you should check out the modules ;
Net::NNTP
CGI (maybe)
--
Alastair
work : alastair@psoft.co.uk
home : alastair@calliope.demon.co.uk
------------------------------
Date: Sun, 27 Jun 1999 17:16:43 +0200
From: "Trond Michelsen" <mike@crusaders.no>
Subject: Re: Read news by Broswer
Message-Id: <7hrd3.262$o_1.1087@news1.online.no>
Alastair <alastair@calliope.demon.co.uk> wrote in message
news:slrn7ncfu5.1lk.alastair@calliope.demon.co.uk...
> Tanya <tanya@i-cable.com> wrote:
> >how i can read news in a newsgroup
> >by using a perl script in a broswer?
> I can't think of something worse than reading news with a web browser but
...
> If you're going to try this, you should check out the modules ;
> Net::NNTP
> CGI (maybe)
Well, I started making a newsreader in perl, but haven't got around to
finish it. However, these are the modules I'm using:
News::NNTPClient
This module is, as it suggests, an NNTPClient. It provides methods for
receiving headers, messages, overview-records, etc. If you already know how
to communicate with a newsserver you'll be able to use this module straight
away. If not, you'll have to read the manual.
News::Newsrc
This modules handles .newsrc files (ooh, big surprise)
CGI
Well, using CGI.pm is always handy when making scripts that use forms and/or
cookies
CGI::Fasttemplate
My favourite template-module.
HTML::Entities
To decode the header and body of a news-message so that it'll show up nicely
in a browser.
Set::IntSpan
Uhm.... probably related to News::Newsrc, can't remember if I used it for
anything else actually.
Date::Calc
To convert the message-date to local time.
Tie::IxHash
I used this to create a hash of message-IDs so that I could provide proper
threading.
What's really lacking is of course MIME-support. There are a lot of
MIME::modules out there, but I never got as far as decoding message
attachments.
I could probably make the source available for download if anybody's
interested in a messy, poorly documented source though.
--
Trond Michelsen
------------------------------
Date: Sun, 27 Jun 1999 10:29:44 -0400
From: Gene Dolgin <Gened@ohinter.net>
Subject: regex question
Message-Id: <37763557.82C201E4@ohinter.net>
I have a perl program to do a whois on a domain and pull the email of
the administrative contact. Here it is:
#!/usr/bin/perl
$whois2 = `whois SETSTYLE-dom`;
$whois2 =~ /\).*\@.*\..*/m;
print "$whois2\n";
print "$1\n";
print "$2\n";
For some reason, this always returns blanks. What's wrong?
-gene
------------------------------
Date: Sun, 27 Jun 1999 08:14:33 -0700
From: lr@hpl.hp.com (Larry Rosler)
Subject: Re: regex question
Message-Id: <MPG.11dfdfa9bb42371c989c57@nntp.hpl.hp.com>
[Posted and a courtesy copy sent. alt.perl removed.]
In article <37763557.82C201E4@ohinter.net> on Sun, 27 Jun 1999 10:29:44
-0400, Gene Dolgin <Gened@ohinter.net> says...
> I have a perl program to do a whois on a domain and pull the email of
> the administrative contact. Here it is:
> #!/usr/bin/perl
> $whois2 = `whois SETSTYLE-dom`;
> $whois2 =~ /\).*\@.*\..*/m;
> print "$whois2\n";
> print "$1\n";
> print "$2\n";
>
> For some reason, this always returns blanks. What's wrong?
Where are the capturing parentheses in the regex that will cause values
to be assigned to $1 and $2?
Where is the test for success of the regex, so that you know that the
captured values really come from this match?
Why is there a '/m' (Multiple Match on lines) on the regex, when neither
'^' nor '$' is being used? I think your intention is to Span Several
lines with '.', so you want '/s'.
As for the actual capture of the email address, as you don't show its
extent I can't comment on it. But get it wrong and Randal Schwartz
will. Search this newsgroup for 'fred&barney' to see why.
--
(Just Another Larry) Rosler
Hewlett-Packard Laboratories
http://www.hpl.hp.com/personal/Larry_Rosler/
lr@hpl.hp.com
------------------------------
Date: Sun, 27 Jun 1999 15:16:48 +0200
From: "Eric v.d. Lugt" <vdlugt@kabelfoon.nl>
Subject: Removing spaces from string
Message-Id: <7l5892$fd0$1@news.kabelfoon.nl>
Does anyone know how to remove space withing a sting?
$klaas = "mm 11 2 244";
should become
"mm112244";
please CC to vdlugt@kabelfoon.nl
Thanks,
Eric
------------------------------
Date: Sun, 27 Jun 1999 14:16:46 GMT
From: alastair@calliope.demon.co.uk (Alastair)
Subject: Re: Removing spaces from string
Message-Id: <slrn7ncg6u.1lk.alastair@calliope.demon.co.uk>
Eric v.d. Lugt <vdlugt@kabelfoon.nl> wrote:
>Does anyone know how to remove space withing a sting?
Yes. The question is asked about 10 times a week. You should seach Dejanews for
details (http://www.deja.com/home_ps.shtml).
--
Alastair
work : alastair@psoft.co.uk
home : alastair@calliope.demon.co.uk
------------------------------
Date: Sun, 27 Jun 1999 07:18:33 -0700
From: ookookook@yahoo.com (Ook!)
Subject: Re: Unlink == delete files? Why (on earth) is it called unlink?
Message-Id: <ookookook-2706990718340001@ip83.r1.d.pdx.nwlink.com>
In article <1du1d3a.dm04s6p601boN@p11.tc2.metro.ma.tiac.com>,
rjk@linguist.dartmouth.edu (Ronald J Kimball) wrote:
>>I wonder if that clause could have been rephrased:
>>
>>such as vi, awk, sed, the Bourne and C shells, and the various GNU
>>application programs.
>>
>>and still meant what the original author intended...
Well, yes, of course that's what I meant, but the pedant was more
interested in proving what a clueless wanker he was than say, enlightening
the original poster. Little johnnie musta had a bad night and wet his bed
again.
--
"Television: a medium. So called because it is neither rare nor well done."
- Ernie Kovacs
------------------------------
Date: Sun, 27 Jun 1999 22:47:35 +0800
From: Tanya <tanya@i-cable.com>
Subject: Web NewsReader
Message-Id: <37763986.327CE3D@i-cable.com>
How can i use a broswer to read news
in certain newsgroup via perl script
THX
------------------------------
Date: Sun, 27 Jun 1999 15:15:13 GMT
From: laar@ix.netcom.com (Laar)
Subject: Re: weirdness with Netcom
Message-Id: <37763fd3.696162@nntp.ix.netcom.com>
>>Any idea why an FTP upload would corrupt a file rather than replace
>>it?
>Aside from the usual use of binary mode between Unix and Windows
>or Macintosh, instead of ascii/text mode?
Nope -- I'm uploading in ASCII mode.
Hmm...
--
Laar
www.netcom.com/~laar/index.html
------------------------------
Date: Sun, 27 Jun 1999 14:07:03 GMT
From: TechGuy <michael@cermak.com>
Subject: What's a good BBS cgi program?
Message-Id: <7l5b64$nur$1@nnrp1.deja.com>
I'm currently using UltimateBB(.com) for my BBS program, but have been
experiencing a lot of problems, some related to reaching 10,000 posts
in a discussion area. Can someone recommend another, better BBS
program? I'd like it to be based on some sort of database so that the
number of posts doesn't make a big difference in performance. I've
looked at www.wwwthreads.org and it seems to be just what I need, but
for some reason won't detect MySQL on my server (though other programs
have no problems), and their support won't answer me. Also, I'm
looking at DCForum99 (www.dcscripts.com). Any ideas or comments? Any
suggestions are greatly appreciated.
Also, if this question would be better placed in another forum, please
point me in the right direction. Thanks!
-Mike
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: 27 Jun 1999 13:35:06 GMT
From: dennis@info4.csie.nctu.edu.tw (GEMINI)
Subject: zmodem transfer module available?
Message-Id: <7l59aa$h4t$1@netnews.csie.NCTU.edu.tw>
I often telnet to a remote host and use zmodem
protocol to transmit file back (by typing sz command,
and my terminal program support automatic receive).
For some reasons, I cannot use FTP to get the file,
this is the only way to transfer files.
I like to write a program to do this for me,
maybe I can use telnet module to connect the host,
and type sz command. But after that, how do I
handle the zmodem processing? Is there any module
can do this?
Or is there any better suggestion?
thanks.
------------------------------
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 6144
**************************************