[7580] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 1206 Volume: 8

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Tue Oct 21 11:11:28 1997

Date: Tue, 21 Oct 97 08:01:43 -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           Tue, 21 Oct 1997     Volume: 8 Number: 1206

Today's topics:
     [Reposted due to Enlow UCE cancel]: Re: @ + @  =  %   b <bugaj@bell-labs.com>
     [Reposted due to Enlow UCE cancel]: Re: @ + @  =  %   b <bugaj@bell-labs.com>
     [Reposted due to Enlow UCE cancel]: Re: Calling an exec <ase@seanet.com>
     [Reposted due to Enlow UCE cancel]: Re: Calling an exec <ase@seanet.com>
     [Reposted due to Enlow UCE cancel]: Re: guestbook in "L (Faust Gertz)
     [Reposted due to Enlow UCE cancel]: Re: guestbook in "L (Faust Gertz)
     [Reposted due to Enlow UCE cancel]: Re: Help me, please <seay@absyss.fr>
     [Reposted due to Enlow UCE cancel]: Re: Help me, please <seay@absyss.fr>
     [Reposted due to Enlow UCE cancel]: Re: Help with MacPe (Chris Nandor)
     [Reposted due to Enlow UCE cancel]: Re: Help with MacPe (Chris Nandor)
     Digest Administrivia (Last modified: 8 Mar 97) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: Mon, 20 Oct 1997 07:32:41 -0400
From: Stephan Vladimir Bugaj <bugaj@bell-labs.com>
To: mailus@web-uk.com
Subject: [Reposted due to Enlow UCE cancel]: Re: @ + @  =  %   but how?
Message-Id: <REPOST-18535.434326171875.344B4159.79916578@bell-labs.com>

Richard Butcher wrote:

> I have an array:
> @startwith = ("a","b","c","d","e","f","g","h")
>
> How do I insert the first eight fields into a hash that looks like
> %result = "a","0","b","0","c","1","d","0","e","0","f","1","g","0","h","0")
> and then pick up the two other fields as $nine and $ten
>
> I know I can split each line into an array
> @fields = split(/;/,$line);
> and, if necessary, limit it to eight items
> but I don't know how to combine and then pick up the two leftovers.
>

I'd do it something like this (there may be some cool

shortcuts for doing this which I am unaware of...):

# $line = the ; delimited line you mention

@startwith = ("a","b","c","d","e","f","g","h");

chomp($line); #if you don't want the probable \n at the end of $line

              #to wind up in $ten

@fields = split(/;/,$line);

$ten = pop(@fields);

$nine = pop(@fields);

$i = 0;

foreach $foo (@startwith)

{

    $result{$foo} = $fields[$i];

    $i++;

}



--
                        "Do computers think?"
------------------------------------------------------------------------
Stephan Vladimir Bugaj                               bugaj@bell-labs.com
Member of Technical Staff                                 (908) 949-3875
Multimedia Communication Research Dept.              Rm. 4F-601, Holmdel
Bell Labs of Lucent Technologies            www.multimedia.bell-labs.com
PGP Key available from www.pgp.net/wwwkeys.html or your local keyserver.
Non-Lucent personal website located at www.cthulhu-dynamics.com/stephan.
------------------------------------------------------------------------
 STANDARD DISCLAIMER:  My opinions are NOT necessarily those of LUCENT.
------------------------------------------------------------------------
                "Do submarines swim?" - E.W. Dijkstra



========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344B4159.79916578@bell-labs.com>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!europa.clark.net!204.59.152.222!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344B4159.79916578@bell-labs.com>
Approved: godmom@pagesz.net
Message-ID: <cancel.344B4159.79916578@bell-labs.com>
X-No-Archive: Yes
Sender: Stephan Vladimir Bugaj <bugaj@bell-labs.com>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:37:58 GMT
Lines: 2


This article cancelled within Tin.


------------------------------

Date: Mon, 20 Oct 1997 07:32:41 -0400
From: Stephan Vladimir Bugaj <bugaj@bell-labs.com>
To: mailus@web-uk.com
Subject: [Reposted due to Enlow UCE cancel]: Re: @ + @  =  %   but how?
Message-Id: <REPOST-11979.634399414062.344B4159.79916578@bell-labs.com>

Richard Butcher wrote:

> I have an array:
> @startwith = ("a","b","c","d","e","f","g","h")
>
> How do I insert the first eight fields into a hash that looks like
> %result = "a","0","b","0","c","1","d","0","e","0","f","1","g","0","h","0")
> and then pick up the two other fields as $nine and $ten
>
> I know I can split each line into an array
> @fields = split(/;/,$line);
> and, if necessary, limit it to eight items
> but I don't know how to combine and then pick up the two leftovers.
>

I'd do it something like this (there may be some cool

shortcuts for doing this which I am unaware of...):

# $line = the ; delimited line you mention

@startwith = ("a","b","c","d","e","f","g","h");

chomp($line); #if you don't want the probable \n at the end of $line

              #to wind up in $ten

@fields = split(/;/,$line);

$ten = pop(@fields);

$nine = pop(@fields);

$i = 0;

foreach $foo (@startwith)

{

    $result{$foo} = $fields[$i];

    $i++;

}



--
                        "Do computers think?"
------------------------------------------------------------------------
Stephan Vladimir Bugaj                               bugaj@bell-labs.com
Member of Technical Staff                                 (908) 949-3875
Multimedia Communication Research Dept.              Rm. 4F-601, Holmdel
Bell Labs of Lucent Technologies            www.multimedia.bell-labs.com
PGP Key available from www.pgp.net/wwwkeys.html or your local keyserver.
Non-Lucent personal website located at www.cthulhu-dynamics.com/stephan.
------------------------------------------------------------------------
 STANDARD DISCLAIMER:  My opinions are NOT necessarily those of LUCENT.
------------------------------------------------------------------------
                "Do submarines swim?" - E.W. Dijkstra



========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344B4159.79916578@bell-labs.com>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!europa.clark.net!204.59.152.222!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344B4159.79916578@bell-labs.com>
Approved: godmom@pagesz.net
Message-ID: <cancel.344B4159.79916578@bell-labs.com>
X-No-Archive: Yes
Sender: Stephan Vladimir Bugaj <bugaj@bell-labs.com>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:37:58 GMT
Lines: 2


This article cancelled within Tin.


------------------------------

Date: Mon, 20 Oct 1997 18:14:56 -0700
From: "Allen Evenson" <ase@seanet.com>
Subject: [Reposted due to Enlow UCE cancel]: Re: Calling an executable file from within Perl
Message-Id: <REPOST-20128.385711669922.62gvlj$a9n@q.seanet.com>

 You need the system() command.  See:  perlfunc  documentation or FAQ =
that
should have came with your distrubution.

Luck,

Jeff Girard wrote in article =
<01bcddb1$f9479860$78da1b8a@girardj.army.mil>...

>Im using Perl ver 5 on an NT 4.0 platform.  I need to call and execute =
an
>executable from within perl.  The file will execute but will not return =
a
>value to perl. =20
>
>Example:
>
>I want to call a freeware executable called zip from within perl.
>
>Command line syntax:
>
>zip target source1 source2 source3
>
>Can anybody help me with the syntax to make this call from within Perl?
>
>Jeff

========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <62gvlj$a9n@q.seanet.com>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!europa.clark.net!204.59.152.222!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <62gvlj$a9n@q.seanet.com>
Approved: godmom@pagesz.net
Message-ID: <cancel.62gvlj$a9n@q.seanet.com>
X-No-Archive: Yes
Sender: "Allen Evenson" <ase@seanet.com>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 02:28:24 GMT
Lines: 2


This article cancelled within Tin.


------------------------------

Date: Mon, 20 Oct 1997 18:14:56 -0700
From: "Allen Evenson" <ase@seanet.com>
Subject: [Reposted due to Enlow UCE cancel]: Re: Calling an executable file from within Perl
Message-Id: <REPOST-1200.9633483886719.62gvlj$a9n@q.seanet.com>

 You need the system() command.  See:  perlfunc  documentation or FAQ =
that
should have came with your distrubution.

Luck,

Jeff Girard wrote in article =
<01bcddb1$f9479860$78da1b8a@girardj.army.mil>...

>Im using Perl ver 5 on an NT 4.0 platform.  I need to call and execute =
an
>executable from within perl.  The file will execute but will not return =
a
>value to perl. =20
>
>Example:
>
>I want to call a freeware executable called zip from within perl.
>
>Command line syntax:
>
>zip target source1 source2 source3
>
>Can anybody help me with the syntax to make this call from within Perl?
>
>Jeff

========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <62gvlj$a9n@q.seanet.com>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!europa.clark.net!204.59.152.222!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <62gvlj$a9n@q.seanet.com>
Approved: godmom@pagesz.net
Message-ID: <cancel.62gvlj$a9n@q.seanet.com>
X-No-Archive: Yes
Sender: "Allen Evenson" <ase@seanet.com>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 02:28:24 GMT
Lines: 2


This article cancelled within Tin.


------------------------------

Date: Mon, 20 Oct 1997 19:42:06 GMT
From: faust@wwa.com (Faust Gertz)
Subject: [Reposted due to Enlow UCE cancel]: Re: guestbook in "Learning Perl", 2nd Ed.
Message-Id: <REPOST-24978.237701416016.344bb342.59868@news.wwa.com>

On 20 Oct 1997 14:38:17 -0400, mdennist@dekalb.dc.peachnet.edu
(Michael L Denniston,CD108C SCIE,299-4097,3) wrote:

>I am trying to modify the guestbook program given on p. 198 of the new 
>addition of Learning Perl by Schwartz & Christianson.  I am concerned 
>about security for my cgi-bin directory which is being run under my user 
>name.  Consequently I want to check for meta-characters and other nasties 
>being entered into my guestbook.  

It would be better to run perl -T and to read and understand  _The
World Wide Web Security FAQ_
(http://www.genome.wi.mit.edu/WWW/faqs/) than just to check for
meta-characters.

>The Perl syntax for the checking 
>routine is not a problem, I just cannot seem to find the right variable 
>to check.  I suspect that I am not as familiar with some of the objects 
>used in this program as I ought to be.

Then please ask about the specific stuff you don't understand.  The
point of that chapter is not to give you a nifty guest book script,
but for you to learn and understand something.  If you haven't
already, please read the book from cover to cover and then try to play
with the last chapter.

> E-mail preferred.

I prefer Usenet, but often do use both.


HTH

Faust Gertz
Philosopher at Large

"If only you had plead guilty!  We can manage the guilty - it is 
the innocent who escape us, who cause nothing but anarchy" -- 
 Jean Cocteau's _Bacchus_
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344bb342.59868@news.wwa.com>
Newsgroups: comp.lang.perl.misc
Path: ...!news.tamu.edu!newshost.comco.com!news.altair.com!uwvax!uwm.edu!vixen.cso.uiuc.edu!howland.erols.net!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344bb342.59868@news.wwa.com>
Approved: godmom@pagesz.net
Message-ID: <cancel.344bb342.59868@news.wwa.com>
X-No-Archive: Yes
Sender: faust@wwa.com (Faust Gertz)
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:26:31 GMT
Lines: 2


This article cancelled within Tin.


------------------------------

Date: Mon, 20 Oct 1997 19:42:06 GMT
From: faust@wwa.com (Faust Gertz)
Subject: [Reposted due to Enlow UCE cancel]: Re: guestbook in "Learning Perl", 2nd Ed.
Message-Id: <REPOST-22183.322998046875.344bb342.59868@news.wwa.com>

On 20 Oct 1997 14:38:17 -0400, mdennist@dekalb.dc.peachnet.edu
(Michael L Denniston,CD108C SCIE,299-4097,3) wrote:

>I am trying to modify the guestbook program given on p. 198 of the new 
>addition of Learning Perl by Schwartz & Christianson.  I am concerned 
>about security for my cgi-bin directory which is being run under my user 
>name.  Consequently I want to check for meta-characters and other nasties 
>being entered into my guestbook.  

It would be better to run perl -T and to read and understand  _The
World Wide Web Security FAQ_
(http://www.genome.wi.mit.edu/WWW/faqs/) than just to check for
meta-characters.

>The Perl syntax for the checking 
>routine is not a problem, I just cannot seem to find the right variable 
>to check.  I suspect that I am not as familiar with some of the objects 
>used in this program as I ought to be.

Then please ask about the specific stuff you don't understand.  The
point of that chapter is not to give you a nifty guest book script,
but for you to learn and understand something.  If you haven't
already, please read the book from cover to cover and then try to play
with the last chapter.

> E-mail preferred.

I prefer Usenet, but often do use both.


HTH

Faust Gertz
Philosopher at Large

"If only you had plead guilty!  We can manage the guilty - it is 
the innocent who escape us, who cause nothing but anarchy" -- 
 Jean Cocteau's _Bacchus_
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344bb342.59868@news.wwa.com>
Newsgroups: comp.lang.perl.misc
Path: ...!news.tamu.edu!newshost.comco.com!news.altair.com!uwvax!uwm.edu!vixen.cso.uiuc.edu!howland.erols.net!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344bb342.59868@news.wwa.com>
Approved: godmom@pagesz.net
Message-ID: <cancel.344bb342.59868@news.wwa.com>
X-No-Archive: Yes
Sender: faust@wwa.com (Faust Gertz)
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:26:31 GMT
Lines: 2


This article cancelled within Tin.


------------------------------

Date: Mon, 20 Oct 1997 11:49:52 +0200
From: Doug Seay <seay@absyss.fr>
To: "Nikolai A. Prokofiev" <nprokofiev@wperiod.ru>
Subject: [Reposted due to Enlow UCE cancel]: Re: Help me, please!
Message-Id: <REPOST-12387.621948242188.344B2940.2CCF8B0F@absyss.fr>

[posted and mailed]

Nikolai A. Prokofiev wrote:
> 
> Hello and great PRIVET from Russia!
>     I have a troubles leaning PERL... The trouble is: I have NO
> literature on PERL, except man-files from www.perl.org and
> www.cit-forum.ru. Please, sent me URL's to examples of live PERL-scripts
> because of it can help me to learn it...

The man-files are excellent and contain thousands upon thosands of lines
of text.  They should do if you already know how to program.  Of course,
if you've never programmed before, you have lots of basics to learn. 
Try "perldoc perlsyn" and see if you get get information about Perl
syntax.  "perldoc" comes standard with all newer perl5 distributions. 
Things like "perlipc" are loaded with examples.

- doug
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344B2940.2CCF8B0F@absyss.fr>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!europa.clark.net!204.59.152.222!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344B2940.2CCF8B0F@absyss.fr>
Approved: godmom@pagesz.net
Message-ID: <cancel.344B2940.2CCF8B0F@absyss.fr>
X-No-Archive: Yes
Sender: Doug Seay <seay@absyss.fr>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:44:31 GMT
Lines: 2


This article cancelled within Tin.


------------------------------

Date: Mon, 20 Oct 1997 11:49:52 +0200
From: Doug Seay <seay@absyss.fr>
To: "Nikolai A. Prokofiev" <nprokofiev@wperiod.ru>
Subject: [Reposted due to Enlow UCE cancel]: Re: Help me, please!
Message-Id: <REPOST-15346.531646728516.344B2940.2CCF8B0F@absyss.fr>

[posted and mailed]

Nikolai A. Prokofiev wrote:
> 
> Hello and great PRIVET from Russia!
>     I have a troubles leaning PERL... The trouble is: I have NO
> literature on PERL, except man-files from www.perl.org and
> www.cit-forum.ru. Please, sent me URL's to examples of live PERL-scripts
> because of it can help me to learn it...

The man-files are excellent and contain thousands upon thosands of lines
of text.  They should do if you already know how to program.  Of course,
if you've never programmed before, you have lots of basics to learn. 
Try "perldoc perlsyn" and see if you get get information about Perl
syntax.  "perldoc" comes standard with all newer perl5 distributions. 
Things like "perlipc" are loaded with examples.

- doug
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344B2940.2CCF8B0F@absyss.fr>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!europa.clark.net!204.59.152.222!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344B2940.2CCF8B0F@absyss.fr>
Approved: godmom@pagesz.net
Message-ID: <cancel.344B2940.2CCF8B0F@absyss.fr>
X-No-Archive: Yes
Sender: Doug Seay <seay@absyss.fr>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:44:31 GMT
Lines: 2


This article cancelled within Tin.


------------------------------

Date: Mon, 20 Oct 1997 09:42:22 -0400
From: pudge@pobox.com (Chris Nandor)
Subject: [Reposted due to Enlow UCE cancel]: Re: Help with MacPerl help
Message-Id: <REPOST-15987.512084960938.pudge-ya02408000R2010970942220001@news.idt.net>

In article <dmerberg-1410972208580001@d13.dial-2.ltn.ma.ultra.net>,
dmerberg@genetics.com (David Merberg) wrote:

# My copy of Shuck is v 1.0.

You should upgrade to the latest version of MacPerl (5.1.4r4, tho a 5.1.5
is imminent) and Shuck, which is at 1.2.  I might be able to help fix your
problem with 1.0, but I prefer not to try.  :-)

--
Chris Nandor               pudge@pobox.com           http://pudge.net/
%PGPKey=('B76E72AD',[1024,'0824 090B CE73 CA10  1FF7 7F13 8180 B6B6'])
#==                    MacPerl: Power and Ease                     ==#
#==    Publishing Date: Early 1998. http://www.ptf.com/macperl/    ==#
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <pudge-ya02408000R2010970942220001@news.idt.net>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!europa.clark.net!204.59.152.222!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <pudge-ya02408000R2010970942220001@news.idt.net>
Approved: godmom@pagesz.net
Message-ID: <cancel.pudge-ya02408000R2010970942220001@news.idt.net>
X-No-Archive: Yes
Sender: pudge@pobox.com (Chris Nandor)
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:40:00 GMT
Lines: 2


This article cancelled within Tin.


------------------------------

Date: Mon, 20 Oct 1997 09:42:22 -0400
From: pudge@pobox.com (Chris Nandor)
Subject: [Reposted due to Enlow UCE cancel]: Re: Help with MacPerl help
Message-Id: <REPOST-18337.440368652344.pudge-ya02408000R2010970942220001@news.idt.net>

In article <dmerberg-1410972208580001@d13.dial-2.ltn.ma.ultra.net>,
dmerberg@genetics.com (David Merberg) wrote:

# My copy of Shuck is v 1.0.

You should upgrade to the latest version of MacPerl (5.1.4r4, tho a 5.1.5
is imminent) and Shuck, which is at 1.2.  I might be able to help fix your
problem with 1.0, but I prefer not to try.  :-)

--
Chris Nandor               pudge@pobox.com           http://pudge.net/
%PGPKey=('B76E72AD',[1024,'0824 090B CE73 CA10  1FF7 7F13 8180 B6B6'])
#==                    MacPerl: Power and Ease                     ==#
#==    Publishing Date: Early 1998. http://www.ptf.com/macperl/    ==#
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <pudge-ya02408000R2010970942220001@news.idt.net>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!europa.clark.net!204.59.152.222!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <pudge-ya02408000R2010970942220001@news.idt.net>
Approved: godmom@pagesz.net
Message-ID: <cancel.pudge-ya02408000R2010970942220001@news.idt.net>
X-No-Archive: Yes
Sender: pudge@pobox.com (Chris Nandor)
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:40:00 GMT
Lines: 2


This article cancelled within Tin.


------------------------------

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 1206
**************************************

home help back first fref pref prev next nref lref last post