[18418] in Perl-Users-Digest

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

Perl-Users Digest, Issue: 586 Volume: 10

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Thu Mar 29 14:21:12 2001

Date: Thu, 29 Mar 2001 11:20:47 -0800 (PST)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <985893646-v10-i586@ruby.oce.orst.edu>
Content-Type: text

Perl-Users Digest           Thu, 29 Mar 2001     Volume: 10 Number: 586

Today's topics:
        Run script daily <stefan@wirelessopinion.com>
    Re: Run script daily <michael@NOSPAM.vilain.com>
    Re: Run script daily <wyzelli@yahoo.com>
        Search x keywords in a string ? (MAC)
    Re: Search x keywords in a string ? (Tad McClellan)
    Re: Search x keywords in a string ? (Jay Tilton)
        Sitemap script <nitin@lotusherbals.com>
    Re: Sitemap script <comdog@panix.com>
    Re: Sitemap script (Randal L. Schwartz)
    Re: Spaces in path to perl script (NT) dmeyers+news@panix.com
    Re: stat() or 'real' filesize of a file in an iso-files <mischief@velma.motion.net>
    Re: Swinging through the trees skipit@nospam.com
        This does not work but documentation says it should <rhugga@yahoo.com>
    Re: This does not work but documentation says it should <uri@sysarch.com>
    Re: This does not work but documentation says it should <wyzelli@yahoo.com>
    Re: This does not work but documentation says it should <Qeacostl@ilstu.edu>
    Re: This does not work but documentation says it should <uri@sysarch.com>
    Re: Using Sunfreeware's perl in place of Sun's perl (Steven M. Christensen)
    Re: Using Sunfreeware's perl in place of Sun's perl (Michael Wang)
    Re: Using Sunfreeware's perl in place of Sun's perl <"ken"@$nospam$wellconnected.com>
        where can i get Perl 4 <kiwitter@qns.de>
    Re: where can i get Perl 4 <wuerz@yahoo.com>
        Digest Administrivia (Last modified: 16 Sep 99) (Perl-Users-Digest Admin)

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

Date: Thu, 29 Mar 2001 06:43:47 GMT
From: "s.petersson" <stefan@wirelessopinion.com>
Subject: Run script daily
Message-Id: <DQAw6.2053$sk3.693020@newsb.telia.net>

Hi,

Is there a way to automatically run a Perl script on a daily basis, say at
noon every day? Or is this a question better adressed to a server-ng?




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

Date: Wed, 28 Mar 2001 22:55:36 -0800
From: "Michael Vilain <michael@NOSPAM.vilain.com>"
Subject: Re: Run script daily
Message-Id: <michael-69BF2F.22553628032001@news.tdl.com>

In article <DQAw6.2053$sk3.693020@newsb.telia.net>,
 "s.petersson" <stefan@wirelessopinion.com> wrote:

> Hi,
> 
> Is there a way to automatically run a Perl script on a daily basis, say at
> noon every day? Or is this a question better adressed to a server-ng?
> 
> 

man cron

(you didn't specify what OS or any other relevant info, so I'm
giving you the server answer)

-- 
Michael Vilain
Certified Advanced Rolfer(r)
rolfer@vilain.com
http://www.vilain.com


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

Date: Thu, 29 Mar 2001 16:40:26 +0930
From: "Wyzelli" <wyzelli@yahoo.com>
Subject: Re: Run script daily
Message-Id: <t0Bw6.37$US1.6961@vic.nntp.telstra.net>

"s.petersson" <stefan@wirelessopinion.com> wrote in message
news:DQAw6.2053$sk3.693020@newsb.telia.net...
> Hi,
>
> Is there a way to automatically run a Perl script on a daily basis,
say at
> noon every day? Or is this a question better adressed to a server-ng?

cron on *nix, AT on NT

Wyzelli
--
($a,$b,$w,$t)=(' bottle',' of beer',' on the wall','Take one down, pass
it around');
for(reverse(1..100)){$s=($_!=1)?'s':'';$c.="$_$a$s$b$w\n$_$a$s$b\n$t\n";
$_--;$s=($_!=1)?'s':'';$c.="$_$a$s$b$w\n\n";}print"$c*hic*";





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

Date: Thu, 29 Mar 2001 01:12:21 GMT
From: macv@multiweb.nl (MAC)
Subject: Search x keywords in a string ?
Message-Id: <VZvw6.16863$t9.1668252@news.soneraplaza.nl>

Need some help with a small problem, This is the problem: 

Enter ONE or a unknown amount of keywords in a field, and compare these 
keywords against a string. Print this string if ALL keywords are inside. 
Tried somethings, but below is some code that will print the lines if ONE of 
the keywords are inside, i want ALL (AND) of them in the line and only THEN 
print the line

something like this:

sub search{

@search = split(/\s+/,$FORM{'keywords'}); #split the keywords

if (open(THE_FILE, "$the_file")) # open the file
{

 while (<THE_FILE>)
 {
    $record = $_;  # get one line of the file and put it in $record
    # get the number of keywords in search, and check all of them if
    # they are in the string.
    for ($x = @search; $x > 0; $x--) 
    {
           $match_word = $search[$x - 1];
           if ($record =~ /$match_word/i)
           {
                  print"<BR> gevonden: $record";
           } # End of If
    }
  }
  close(THE_FILE);
}
}

Can someone help me with this ? i am on the right track...?




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

Date: Wed, 28 Mar 2001 22:54:40 -0500
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: Search x keywords in a string ?
Message-Id: <slrn9c5cg0.jrh.tadmc@tadmc26.august.net>

MAC <macv@multiweb.nl> wrote:
>
>Enter ONE or a unknown amount of keywords in a field, and compare these 
>keywords against a string. Print this string if ALL keywords are inside. 


Count how many times it matches. See if the count is equal
to the number of keywords.


>if (open(THE_FILE, "$the_file")) # open the file
                    ^         ^
                    ^         ^

A Useless Use Of Double Quotes there.

   
> while (<THE_FILE>)
> {
>    $record = $_;  # get one line of the file and put it in $record


Why copy it to another variable? You already have it in a variable.

If you want it in $record instead of in $_, just put it there
in the first place:

   while ( $record = <THE_FILE> )


>    for ($x = @search; $x > 0; $x--) 


   my $count;
   foreach my $x ( reverse 0 .. $#search )  # seems easier to understand


>    {
>           $match_word = $search[$x - 1];
                                     ^^^

Now you don't need the hokey index adjustment.


>           if ($record =~ /$match_word/i)
>           {

   $count += 1;

>           } # End of If

   print"<BR> gevonden: $record" if $count == @search;


-- 
    Tad McClellan                          SGML consulting
    tadmc@augustmail.com                   Perl programming
    Fort Worth, Texas


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

Date: Thu, 29 Mar 2001 16:34:55 GMT
From: tiltonj@erols.com (Jay Tilton)
Subject: Re: Search x keywords in a string ?
Message-Id: <3ac35fe9.32362269@news.erols.com>

On Thu, 29 Mar 2001 01:12:21 GMT, macv@multiweb.nl (MAC) wrote:
> while (<THE_FILE>)
> {
>    $record = $_;  # get one line of the file and put it in $record
>    for ($x = @search; $x > 0; $x--) 
>    {
>           if ($record =~ /$match_word/i)
>           {
>                  print"<BR> gevonden: $record";
>           }
>    }
>  }

Both of these approaches will work as desired.

1. When a keyword match fails, skip the rest of the match tests and
read another $record from THE_FILE.  For example,

SOME_LABEL:
   while (my $record = <THE_FILE>) {
      foreach my $match_word (@search) {
         next SOME_LABEL unless $record =~ /$match_word/i;
      }
      print"<BR> gevonden: $record";
   }

2. Count the number of keywords that matched.  Print if it's the same
as the number of words in @search.  For example,

   while (my $record = <THE_FILE>) {
      my $found = map { $record =~ /$_/i } @search;
      print"<BR> gevonden: $record" if $found == scalar(@search);
   }



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

Date: Thu, 29 Mar 2001 13:04:33 -0500
From: Nitin Passi <nitin@lotusherbals.com>
Subject: Sitemap script
Message-Id: <3AC37931.B9F6C96E@lotusherbals.com>

Hi,

Anyone know of a Perl script that creates a sitemap? I want one for my
site.

Thanks.
Nitin.



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

Date: Thu, 29 Mar 2001 12:19:44 -0600
From: brian d foy <comdog@panix.com>
Subject: Re: Sitemap script
Message-Id: <comdog-B3209B.12194429032001@news.panix.com>

In article <3AC37931.B9F6C96E@lotusherbals.com>, Nitin Passi 
<nitin@lotusherbals.com> wrote:

> Anyone know of a Perl script that creates a sitemap? I want one for my
> site.

GraphViz might be useful.

    http://search.cpan.org

-- 
brian d foy <comdog@panix.com>



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

Date: 29 Mar 2001 11:01:44 -0800
From: merlyn@stonehenge.com (Randal L. Schwartz)
Subject: Re: Sitemap script
Message-Id: <m1ae64pffr.fsf@halfdome.holdit.com>

>>>>> "Nitin" == Nitin Passi <nitin@lotusherbals.com> writes:

Nitin> Anyone know of a Perl script that creates a sitemap? I want one for my
Nitin> site.

<http://www.stonehenge.com/merlyn/WebTechniques/col58.html> might
be a good start.
-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!


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

Date: 29 Mar 2001 12:21:08 -0500
From: dmeyers+news@panix.com
Subject: Re: Spaces in path to perl script (NT)
Message-Id: <yobelvgbiez.fsf@panix3.panix.com>

Paul Goris <paul@indigoproductions.be> writes:
> glynFOOdwr@FSCKdeleteEmeD.co.uk wrote on 16/3/01 16:57:

> > This is webserver issue; IIS is choking on the spaces, not Perl. My only

> Sure, the problem apparently lies with NT/IIS I suppose, but it's
> also true that directory names with spaces are no problem when
> calling regular html of image files, whereas they are when you try
> to access a Perl script.  So I suppose my question isn't really off

It's both an IIS problem and a perl feature.
IIS does a mapping (go to the server, pull up
Properties, Application Configuration) which
tells it (usually) to take a file with a given
extension (ie. .pl) and do something with it.
By default, for .pl, it wants to: C:\Path\To\Perl.exe %s %s.
This constructs a command line which passes your
script's path to the perl interepreter.  Perl,
however, when it looks at that path, breaks up the
path on the whitespace.  It's as if you typed:
c:\Path\To\Perl.exe c:/myPath/with spaces/to/my/script.pl

> topic and I'm still hoping other posters here would be aware of this
> issue and be able to give a clue about what to do...

Get rid of the spaces in the path.

--d

-- 
dmeyers@panix.com

Please don't use HTML in e-mail.  Here's how not to:
http://www.geocities.com/CapitolHill/1236/nomime.html


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

Date: Wed, 28 Mar 2001 20:42:56 -0000
From: Chris Stith <mischief@velma.motion.net>
Subject: Re: stat() or 'real' filesize of a file in an iso-filesystem
Message-Id: <tc4j6geamtv3b1@corp.supernews.com>

peter pilsl <pilsl_@goldfisch.at> wrote:
> In article <tc2gmhgps1vp89@corp.supernews.com>, mischief@velma.motion.net 
> says...
>> 
>> `NP' means nodeterministic polynomial. It means that it has not been
> <skip>
>> One interesting NP-Complete problem which was found in the past
>> year or two to be NP-Complete is how to test whether a given
>> Minesweeper game state is logically consistent internally. Maybe
>> this will be the path which leads someone to cracking the
>> NP-Complete enigma. ;-)
>> 

Much of this is covered in the FAQ for comp.theory, so I've
set followups there after this. Please read their FAQ before
asking questions covered in it.

> To test, if a given state of minesweeper is logically consistant ?
> You mean: I dont see the mines, I just see the exposed fields and the 
> numbers on it and userset flags and need to check if all this seems to be 
> logically all together ?

Pretty much. It also goes into how to make the next move, based on
whether or not a given square can be proven to have a mine or proven
to not have one. It was proven to be equivalent to some other problem
in the class. The original article was published by Richard Kaye in
_Mathemtical Integencer_ (volume 22 number 2, pages 9--15), and I
saw an article about it by Ian Stewart in _Scientific American_
of October 2000. 

Richard Kaye has several pages devoted to this:
http://www.mat.bham.ac.uk/R.W.Kaye/minesw/minesw.htm
is the main one. Mr. Kaye's FAQ explains several points about
the Minesweeper Consistency Problem, and I'm certain he explains
himself more clearly than I.
 
> horio ! I'll get famous ;)

Good luck. I'd love to read someday that NP-Complete has been
found to be polynomial. Life would be so much easier if we could
solve the Traveling Salesman Problem and the Bin Problem in
reasonable time.

If you do solve NP-Complete, please be a good guy and take the
$1,000,000 reward offered by the Clay Institute instead of
staying quiet and reading everyone's data encrypted by NP-Complete
algorithms (some data encryption is harder to crack than NP-complete,
so revealing that NP-Complete has been cracked will let people
move on to those).

> Thanx for explaining NP to me. Due I studied mathematics, I've heard of 
> things things ;), but I didnt know the name NP.

You're welcome. I've never studied much math beyond what was required
of my BS, so you probably understand it better than I.

[snip book reference]

> Is this minesweeper-problem in it ? I really got interested, cause I 
> played with an autosolving-feature for minesweeper years ago ;)

I'd read about it in the magazines mentioned earlier. I believe
it'll be a little while before most textbooks cover it.

Anyway, all of this has delved far into general programming and
computer theory. All of this applies to Perl, but no more so than
to every other language. Followup-to set to comp.theory

Chris

-- 
Christopher E. Stith
You can never entirely stop being what you once were. That's
why it's important to be the right person today, and not put
it off till tomorrow. -- Larry Wall, 3rd State of the Onion



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

Date: Thu, 29 Mar 2001 04:18:00 GMT
From: skipit@nospam.com
Subject: Re: Swinging through the trees
Message-Id: <3ac2b616.14815303@news.earthlink.net>


>Next time, when you say "doesn't work", please be a bit more
>descriptive: Any error messages? If so, which ones? Behaviour
>different from what you expect?...

Yes, and I apologize.  All the same, thank you very much for the
pointers.  I can see that the source of my error at least began with
my trying to use Windows style path names in my code.  I had not
realized that perl did not care, or rather prefered I use UNIX paths
(/ not \).  Having made that simple change alone, my script runs
perfectly.  I have even altered the code slightly to output xml.  Just
another lovely bit of stuff to practice with!

Thanks



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

Date: Wed, 28 Mar 2001 14:46:30 -0800
From: Rhugga <rhugga@yahoo.com>
Subject: This does not work but documentation says it should
Message-Id: <2bq4ctc0hlj5ihd4vnt79fgt7b8mkud27m@4ax.com>


my $x   = 0;
for ($x = 0; $x < $NUM_FILES; $x++) {
   $handle[$x] = new FileHandle "$$file_ptr{$x}", O_WRONLY|O_APPEND;
   if ( defined $handle[$x]) {
      print $handle[$x] "Testing.\n";
      close($handle[$x]);
    }
}

The following line:       print $handle[$x] "Testing.\n";
generates the following error:

String found where operator expected at ./sync_files.pl line 33, near
"] "Testing.\n""
        (Missing operator before  "Testing.\n"?)
syntax error at ./sync_files.pl line 33, near "] "Testing.\n""
Execution of ./sync_files.pl aborted due to compilation errors.


According to the FileHandle documentation, this should work.




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

Date: Wed, 28 Mar 2001 23:27:02 GMT
From: Uri Guttman <uri@sysarch.com>
Subject: Re: This does not work but documentation says it should
Message-Id: <x7lmppxynt.fsf@home.sysarch.com>

>>>>> "R" == Rhugga  <rhugga@yahoo.com> writes:

  R> print $handle[$x] "Testing.\n";

  R> String found where operator expected at ./sync_files.pl line 33, near
  R> "] "Testing.\n""

  R> According to the FileHandle documentation, this should work.

please quote the docs that say that.

try reading the docs for print which tell you how to do this.

perldoc -f print

in fact the docs for print show one way to do it. i think they should
also show some others.

uri

-- 
Uri Guttman  ---------  uri@sysarch.com  ----------  http://www.sysarch.com
SYStems ARCHitecture, Software Engineering, Perl, Internet, UNIX Consulting
The Perl Books Page  -----------  http://www.sysarch.com/cgi-bin/perl_books
The Best Search Engine on the Net  ----------  http://www.northernlight.com


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

Date: Thu, 29 Mar 2001 10:59:48 +0930
From: "Wyzelli" <wyzelli@yahoo.com>
Subject: Re: This does not work but documentation says it should
Message-Id: <s1ww6.12$US1.4018@vic.nntp.telstra.net>

"Erik" <Qeacostl@ilstu.edu> wrote in message
news:99ttru$1l1$2@news.ilstu.edu...
> Rhugga wrote:
>
>
>
> instead of print $handle[$x] "Testing\n";
> use print $handle[$x], "Testing\n";
> When printing if you have non-quoted and quoted parts on the same
line,
> place a comma between them

No, This is supposed to be a filehandle, not a printed item.

Accordingto the docs as pointed out by Uri,

print { $handle[$x] } "Testing\n";

A Filehandle can only be held in a simle scalar, not an experession
which needs evaluation.

As Uri said, perldoc -f print says this explicitly.

Wyzelli
--
push@x,$_ for(a..z);push@x,' ';
@z='092018192600131419070417261504171126070002100417'=~/(..)/g;
foreach $y(@z){$_.=$x[$y]}y/jp/JP/;print;




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

Date: Wed, 28 Mar 2001 17:59:23 -0600
From: Erik <Qeacostl@ilstu.edu>
Subject: Re: This does not work but documentation says it should
Message-Id: <99ttru$1l1$2@news.ilstu.edu>

Rhugga wrote:

> 
> my $x   = 0;
> for ($x = 0; $x < $NUM_FILES; $x++) {
>    $handle[$x] = new FileHandle "$$file_ptr{$x}", O_WRONLY|O_APPEND;
>    if ( defined $handle[$x]) {
>       print $handle[$x] "Testing.\n";
>       close($handle[$x]);
>     }
> }
> 
> The following line:       print $handle[$x] "Testing.\n";
> generates the following error:
> 
> String found where operator expected at ./sync_files.pl line 33, near
> "] "Testing.\n""
>         (Missing operator before  "Testing.\n"?)
> syntax error at ./sync_files.pl line 33, near "] "Testing.\n""
> Execution of ./sync_files.pl aborted due to compilation errors.
> 
> 
> According to the FileHandle documentation, this should work.
> 
> 


instead of print $handle[$x] "Testing\n";
use print $handle[$x], "Testing\n";
When printing if you have non-quoted and quoted parts on the same line, 
place a comma between them
-- 
To reply by e-mail, remove the Q from my e-mail address.


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

Date: Thu, 29 Mar 2001 00:04:41 GMT
From: Uri Guttman <uri@sysarch.com>
Subject: Re: This does not work but documentation says it should
Message-Id: <x7hf0dxwx2.fsf@home.sysarch.com>

>>>>> "UG" == Uri Guttman <uri@sysarch.com> writes:

>>>>> "R" == Rhugga  <rhugga@yahoo.com> writes:
  R> print $handle[$x] "Testing.\n";

  R> String found where operator expected at ./sync_files.pl line 33, near
  R> "] "Testing.\n""

  R> According to the FileHandle documentation, this should work.

don't anwer this twit. he emails me back a url for the filehandle doc
which never shows that line of code and says it is right there. i point
him again to perldoc -f print and he doesn't seem to read it. oh, well,
you can lead a horse's ass to water, but you can't make him think.

and he killfiled ME. oh, i am so upset. please, can i cry on someone's
shoulder?

for other people who will listen, print takes a dynamic filehandle ONLY
IN A SINGLE SCALAR VARIABLE. since i am killfiled (hopefully here as
well) this won't help him.

uri

-- 
Uri Guttman  ---------  uri@sysarch.com  ----------  http://www.sysarch.com
SYStems ARCHitecture, Software Engineering, Perl, Internet, UNIX Consulting
The Perl Books Page  -----------  http://www.sysarch.com/cgi-bin/perl_books
The Best Search Engine on the Net  ----------  http://www.northernlight.com


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

Date: Wed, 28 Mar 2001 22:33:39 GMT
From: steve@smc.vnet.net (Steven M. Christensen)
Subject: Re: Using Sunfreeware's perl in place of Sun's perl
Message-Id: <7Ftw6.10465$uR4.98273@ralph.vnet.net>

Since I run sunfreeware.com and provide a perl that installs /usr/local/bin
I have both the Sun perl and my perl on my Solaris 8 machine.  I have
seen no problems so long as I have a pointer to the correct perl
executable in the #! line at the beginning of a perl script.  The perl
I provide was compiled with gcc 2.95.2 by the way.

Steve Christensen

In article <99qfuc$grt$1@gallifrey.cse.psu.edu>,
	groenvel@cse.psu.edu (John D Groenveld) writes:
> Leave Sun's perl (SUNWpl5u) installed in /usr/perl5.
> Build your own perl (the latest release, with your favorite compiler, with
> your favorite site specific options) in your favorite location,
> /opt/perl, /usr/local, whatever.
> 
> Any Sun scripts which depend on Sun's perl will reference /usr/perl5/bin/perl
> directly so feel free to break the symbolic link in /usr/bin.
> # rm /usr/bin/perl
> # ln -s /opt/perl/bin/perl /usr/bin/perl
> 
> John
> groenveld@acm.org


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

Date: Thu, 29 Mar 2001 06:42:28 GMT
From: mwang@mindspring.com (Michael Wang)
Subject: Re: Using Sunfreeware's perl in place of Sun's perl
Message-Id: <oPAw6.7483$cN6.630686@news.uswest.net>

John D Groenveld <groenvel@cse.psu.edu> wrote:
># rm /usr/bin/perl
># ln -s /opt/perl/bin/perl /usr/bin/perl

The correct way is:

# rm /usr/bin/perl
# cd /usr/bin
# ln -s ../../opt/perl/bin/perl perl


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

Date: Wed, 28 Mar 2001 23:39:44 -0800
From: Kenneth Simpson <"ken"@$nospam$wellconnected.com>
Subject: Re: Using Sunfreeware's perl in place of Sun's perl
Message-Id: <6FBw6.3136$Uv.1472961@newsrump.sjc.telocity.net>

Hi - there are a lot of correct answers. 

Note, 

	# rm /usr/bin/perl
	# cd /usr/bin
	# ln -s /opt/perl/bin/perl perl 

is also a correct answer.

-- Ken

	

Michael Wang wrote:
> 
> John D Groenveld <groenvel@cse.psu.edu> wrote:
> ># rm /usr/bin/perl
> ># ln -s /opt/perl/bin/perl /usr/bin/perl
> 
> The correct way is:
> 
> # rm /usr/bin/perl
> # cd /usr/bin
> # ln -s ../../opt/perl/bin/perl perl

-- 

========================================================================
Ken Simpson                          	 Well Connected Computing, Inc.
Email: ken@wellconnected.com             1001 Bridgeway, Suite 630
Voice: +1.415.332.5018                   Sausalito, CA 94965
FAX:   +1.415.332.9197                   USA, Earth
========================================================================

	        Printed using 100% recycled electrons.


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

Date: Thu, 29 Mar 2001 09:22:54 +0200
From: Patrick Kiwitter <kiwitter@qns.de>
Subject: where can i get Perl 4
Message-Id: <3AC2E2CE.62C67BEB@qns.de>

Dies ist eine mehrteilige Nachricht im MIME-Format.
--------------C362F5378702DA8ADB1EA73E
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hi @ all

i want to download perl 4 for red hat linux .. Where can i find it ?
please give me the absolutly path of the file.

HELP please tell me

bye @ all

--------------C362F5378702DA8ADB1EA73E
Content-Type: text/x-vcard; charset=us-ascii;
 name="kiwitter.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Visitenkarte für Patrick Kiwitter
Content-Disposition: attachment;
 filename="kiwitter.vcf"

begin:vcard 
n:Kiwitter;Patrick
tel;work:02 34 - 9 35 14 30
x-mozilla-html:FALSE
url:www.qns.de
org:Fa. QNS - quattro network solutions
adr:;;Werner Hellweg 27		;44869 Bochum;NRW;;Deutschland
version:2.1
email;internet:Kiwitter@qns.de
x-mozilla-cpt:;-23328
fn:Patrick Kiwitter
end:vcard

--------------C362F5378702DA8ADB1EA73E--



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

Date: Thu, 29 Mar 2001 09:54:40 +0200
From: Mona Wuerz <wuerz@yahoo.com>
Subject: Re: where can i get Perl 4
Message-Id: <290320010954405736%wuerz@yahoo.com>

In article <3AC2E2CE.62C67BEB@qns.de>, Patrick Kiwitter
<kiwitter@qns.de> wrote:

> Dies ist eine mehrteilige Nachricht im MIME-Format.
> --------------C362F5378702DA8ADB1EA73E

Please turn this off.

> i want to download perl 4 for red hat linux .. Where can i find it ?
> please give me the absolutly path of the file.
> 
> HELP please tell me

You asked the exact same question a while back
(<98q2av$ogc$04$1@news.t-online.com>), and people were actually trying
to help you (<slrn9b2r6e.nts.mgjv@verbruggen.comdyn.com.au>, in
particular). Obviously you ignored the offered help.

So, on second thought -

Please go away.

-mona


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

Date: 16 Sep 99 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin) 
Subject: Digest Administrivia (Last modified: 16 Sep 99)
Message-Id: <null>


Administrivia:

The Perl-Users Digest is a retransmission of the USENET newsgroup
comp.lang.perl.misc.  For subscription or unsubscription requests, send
the single line:

	subscribe perl-users
or:
	unsubscribe perl-users

to almanac@ruby.oce.orst.edu.  

| NOTE: The mail to news gateway, and thus the ability to submit articles
| through this service to the newsgroup, has been removed. I do not have
| time to individually vet each article to make sure that someone isn't
| abusing the service, and I no longer have any desire to waste my time
| dealing with the campus admins when some fool complains to them about an
| article that has come through the gateway instead of complaining
| to the source.

To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.

To request back copies (available for a week or so), send your request
to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
where x is the volume number and y is the issue number.

For other requests pertaining to the digest, send mail to
perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
sending perl questions to the -request address, I don't have time to
answer them even if I did know the answer.


------------------------------
End of Perl-Users Digest V10 Issue 586
**************************************


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