[31751] in Perl-Users-Digest
Perl-Users Digest, Issue: 3014 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Thu Jul 1 11:09:27 2010
Date: Thu, 1 Jul 2010 08:09:10 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Thu, 1 Jul 2010 Volume: 11 Number: 3014
Today's topics:
How to use $string=~s/(whatever)/${$i}/; with strict re <yjnnhauhht@mailinator.com>
Re: Parsing file names with spaces <jak@isp2dial.com>
Re: Parsing file names with spaces <derykus@gmail.com>
Re: Parsing file names with spaces <rvtol+usenet@xs4all.nl>
Re: Parsing file names with spaces <justin.0911@purestblue.com>
Re: Parsing file names with spaces <justin.0911@purestblue.com>
Re: Parsing file names with spaces <jak@isp2dial.com>
Re: Parsing file names with spaces <vicky@dinky.vm.bytemark.co.uk>
Re: Parsing file names with spaces <jurgenex@hotmail.com>
Re: Parsing file names with spaces <jurgenex@hotmail.com>
Re: Parsing file names with spaces <jak@isp2dial.com>
Re: The daemon helper, dh is its name <jak@isp2dial.com>
Re: The daemon helper, dh is its name <jurgenex@hotmail.com>
Re: The daemon helper, dh is its name <jak@isp2dial.com>
Re: The daemon helper, dh is its name <tzz@lifelogs.com>
Re: The daemon helper, dh is its name <jak@isp2dial.com>
Re: The daemon helper, dh is its name <spamtrap@shermpendley.com>
Re: The daemon helper, dh is its name <jak@isp2dial.com>
Re: The daemon helper, dh is its name <sreservoir@gmail.com>
Re: Trouble installing DBD-Oracle-1.23 on Cygwin (Heinrich Mislik)
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Thu, 1 Jul 2010 08:02:54 -0700 (PDT)
From: yjnnhauhht <yjnnhauhht@mailinator.com>
Subject: How to use $string=~s/(whatever)/${$i}/; with strict ref?
Message-Id: <2d198f20-5024-40de-8fee-3e00e8cfec44@c33g2000yqm.googlegroups.com>
Hi,
The following works without strict ref (withh perl 5.10 not 5.8) :
my $i=1;
my $string="teststring";
$string=~s/(test)/${$i}/;
print "$string\n";
But fails to compile with error message "Can't use string ("1") as a
SCALAR ref while "strict refs"" with strict ref.
Is there a way to write it differently so that it's accepted with
strict ref?
Regards,
Yjnnhauhht.
------------------------------
Date: Thu, 01 Jul 2010 04:41:03 +0000
From: John Kelly <jak@isp2dial.com>
Subject: Re: Parsing file names with spaces
Message-Id: <mr6o265lrr5fhoftctl8kfn7ni838hkb2p@4ax.com>
On Wed, 30 Jun 2010 23:03:46 -0500, Tad McClellan <tadmc@seesig.invalid>
wrote:
>Do you have much experience on Usenet?
I think so. How much do you have?
>If so, and if you truly believe that Uri is a troll,
>then please attempt to exert some self control and don't feed it!
Why don't you ask Uri to ignore me. I'm not important, but he seems
obsessed with me.
--
Web mail, POP3, and SMTP
http://www.beewyz.com/freeaccounts.php
------------------------------
Date: Wed, 30 Jun 2010 21:53:07 -0700 (PDT)
From: "C.DeRykus" <derykus@gmail.com>
Subject: Re: Parsing file names with spaces
Message-Id: <01eb185d-66f4-4c71-a89a-1599d9a33b06@w12g2000yqj.googlegroups.com>
On Jun 30, 9:08=A0pm, "C.DeRykus" <dery...@gmail.com> wrote:
> On Jun 30, 4:56=A0pm, James Egan <jegan...@comcast.net> wrote:
>
>
> ...
>
> A split'n-splice perhaps:
>
> =A0 =A0my @f =3D split ' ', $dirline;
> =A0 =A0splice( =A0@f, 0, 8 );
> =A0 =A0print qq{@f} if =A0@f > 1;
>
> This'll squeeze down multiple spaces though.
> To avoid that:
>
> =A0 =A0chomp $dirline;
> =A0 =A0my @f =3D split =A0/(\s+)/x, $dirline;
> =A0 =A0splice( =A0@f, 0, 16 );
> =A0 =A0print join '',@f,"\n" if @f > 1;
>
I just spotted Ben's mention of potential spaces in
other fields so this could be a portability issue.
--
Charles DeRykus
------------------------------
Date: Thu, 01 Jul 2010 09:55:52 +0200
From: "Dr.Ruud" <rvtol+usenet@xs4all.nl>
Subject: Re: Parsing file names with spaces
Message-Id: <4c2c4a08$0$22913$e4fe514c@news.xs4all.nl>
John Kelly wrote:
> open DATA, 'data';
ITYM: open my $fh_data, "<", "data";
Under which rock were you the last 10 years?
> @files = <DATA>;
> foreach (@files) {
> print;
> }
A for-loop? Make it a while.
--
Ruud
------------------------------
Date: Thu, 01 Jul 2010 10:17:23 -0000
From: Justin C <justin.0911@purestblue.com>
Subject: Re: Parsing file names with spaces
Message-Id: <18d5.4c2c6b33.e1d0@zem>
On 2010-07-01, John Kelly <jak@isp2dial.com> wrote:
> On Wed, 30 Jun 2010 23:03:46 -0500, Tad McClellan <tadmc@seesig.invalid>
> wrote:
>
[snip]
>>If so, and if you truly believe that Uri is a troll,
>>then please attempt to exert some self control and don't feed it!
>
> Why don't you ask Uri to ignore me. I'm not important, but he seems
> obsessed with me.
Mr Pot, may I introduce you to Mr Kettle....
Justin.
--
Justin C, by the sea.
------------------------------
Date: Thu, 01 Jul 2010 11:14:33 -0000
From: Justin C <justin.0911@purestblue.com>
Subject: Re: Parsing file names with spaces
Message-Id: <1f79.4c2c7899.80fd6@zem>
On 2010-07-01, Uri Guttman <uri@StemSystems.com> wrote:
>>>>>> "BM" == Ben Morrow <ben@morrow.me.uk> writes:
>
> BM> ls -l output intentionally uses fixed-width columns, except for the
> BM> filename. So
>
> normally that is true, but very large files can cause the name column to
> be shifted over. some ls flavors or options will change the size to use
> a suffix but you can't count on fixed width there. as i posted it is
> best to assume fixed width until the size but that is always a number
> with a possible size suffix so it is easy to match and the rest is the
> file name.
An observation (that may be erroneous) of the output of ls: The second
to last field is always the time, which contains a colon. How about
matching /:\d{2}\s+.*\s+.+\b/ ?
#!/usr/bin/perl
use strict;
use warnings;
while (<DATA>) {
if (/:\d{2}\s+(.*\s+.+)\b/) {
print $1, "\n";
}
}
__DATA__
-rwxrwxrwx 1 777 22000 2971201 Jan 24 18:17 file1.zip
-rwxrwxrwx 1 777 22000 9941 Jan 28 18:10 file2 onespace.zip
-rwxrwxrwx 1 777 22000 3002969941 Jan 29 13:28 file3 two spaces.zip
Justin.
--
Justin C, by the sea.
------------------------------
Date: Thu, 01 Jul 2010 11:55:30 +0000
From: John Kelly <jak@isp2dial.com>
Subject: Re: Parsing file names with spaces
Message-Id: <qnvo265sfchr8p2pnjoev30n7347k2emdn@4ax.com>
On Thu, 01 Jul 2010 09:55:52 +0200, "Dr.Ruud" <rvtol+usenet@xs4all.nl>
wrote:
>John Kelly wrote:
>
>> open DATA, 'data';
>
>ITYM: open my $fh_data, "<", "data";
>
>Under which rock were you the last 10 years?
>
>
>> @files = <DATA>;
>> foreach (@files) {
>> print;
>> }
>
>A for-loop? Make it a while.
The OP was not initially clear on what he wanted. So I threw something
together and put it out there, to see if he would elaborate. At that
early stage, starting a dialog was more important than providing elegant
Perl code. Sometimes people wander into a newsgroup looking for ideas,
and need a friendly helping hand more than elegant code.
He seems to have disappeared though. I guess the mean people scared him
away.
--
Web mail, POP3, and SMTP
http://www.beewyz.com/freeaccounts.php
------------------------------
Date: 1 Jul 2010 13:46:27 GMT
From: <vicky@dinky.vm.bytemark.co.uk>
Subject: Re: Parsing file names with spaces
Message-Id: <893khjFrm9U1@mid.individual.net>
J?rgen Exner <jurgenex@hotmail.com> wrote:
>>Assuming an array named @myfiles contained three elements like:
>>
>>-rwxrwxrwx 1 777 22000 2971201 Jan 24 18:17 file1.zip
>>-rwxrwxrwx 1 777 22000 2969941 Jan 28 18:10 file2 onespace.zip
>>-rwxrwxrwx 1 777 22000 2969941 Jan 29 13:28 file3 two spaces.zip
>>
>>I want to extract just the file which contain spaces to work with like:
>>
>>file1.zip
>>file2 onespace.zip
>>file3 two spaces.zip
> Easy. split() the line into its 9 elements at any non-empty sequence of
> spaces and then pick the last one:
How about split on the : and then substr from 3 chars in?
------------------------------
Date: Thu, 01 Jul 2010 07:38:54 -0700
From: Jürgen Exner <jurgenex@hotmail.com>
Subject: Re: Parsing file names with spaces
Message-Id: <2u9p2690v6mgiqc2baf6pfej9ojndc105a@4ax.com>
Justin C <justin.0911@purestblue.com> wrote:
>On 2010-07-01, Uri Guttman <uri@StemSystems.com> wrote:
>>>>>>> "BM" == Ben Morrow <ben@morrow.me.uk> writes:
>>
>> BM> ls -l output intentionally uses fixed-width columns, except for the
>> BM> filename. So
>>
>> normally that is true, but very large files can cause the name column to
>> be shifted over. some ls flavors or options will change the size to use
>> a suffix but you can't count on fixed width there. as i posted it is
>> best to assume fixed width until the size but that is always a number
>> with a possible size suffix so it is easy to match and the rest is the
>> file name.
>
>An observation (that may be erroneous) of the output of ls: The second
>to last field is always the time, which contains a colon. How about
>matching /:\d{2}\s+.*\s+.+\b/ ?
[...]
> if (/:\d{2}\s+(.*\s+.+)\b/) {
> print $1, "\n";
Not a good idea because colons and digits are legal characters in
filenames and therefore it will chop up filenames like e.g.
foo45:10 bar baz.tmp
jue
------------------------------
Date: Thu, 01 Jul 2010 07:41:51 -0700
From: Jürgen Exner <jurgenex@hotmail.com>
Subject: Re: Parsing file names with spaces
Message-Id: <44ap26tqpb0kmv3grtmnre3m1sqd2bh9ss@4ax.com>
<vicky@dinky.vm.bytemark.co.uk> wrote:
>J?rgen Exner <jurgenex@hotmail.com> wrote:
>>>Assuming an array named @myfiles contained three elements like:
>>>
>>>-rwxrwxrwx 1 777 22000 2971201 Jan 24 18:17 file1.zip
>>>-rwxrwxrwx 1 777 22000 2969941 Jan 28 18:10 file2 onespace.zip
>>>-rwxrwxrwx 1 777 22000 2969941 Jan 29 13:28 file3 two spaces.zip
>>>
>>>I want to extract just the file which contain spaces to work with like:
>>>
>>>file1.zip
>>>file2 onespace.zip
>>>file3 two spaces.zip
>> Easy. split() the line into its 9 elements at any non-empty sequence of
>> spaces and then pick the last one:
>
>How about split on the : and then substr from 3 chars in?
You would need to be able to distinguish between the : as part of the
time stamp and a : as part of a file name.
As others have mentioned already: this format is very poorly suited to
be parsed. The best solution is to ask for the file list in a usable
form.
jue
------------------------------
Date: Thu, 01 Jul 2010 15:07:45 +0000
From: John Kelly <jak@isp2dial.com>
Subject: Re: Parsing file names with spaces
Message-Id: <u9bp26554cas39mup2fi6d0u5scnv4gi86@4ax.com>
On Thu, 01 Jul 2010 07:41:51 -0700, Jürgen Exner <jurgenex@hotmail.com>
wrote:
><vicky@dinky.vm.bytemark.co.uk> wrote:
>>How about split on the : and then substr from 3 chars in?
>
>You would need to be able to distinguish between the : as part of the
>time stamp and a : as part of a file name.
>
>As others have mentioned already: this format is very poorly suited to
>be parsed. The best solution is to ask for the file list in a usable
>form.
>
>jue
Similar to my idea of split with 8 undefs, but more concisely, your
suggestion of:
my $file = (split(/ +/, $_, 9))[8];
works fine. The field count, prior to the file name, will not likely
change for the OP. Not every solution needs to be universally portable,
most people just need something that works in their local environment.
Of course I realize that does little to assuage the social thirst of the
dominant clique here.
--
Web mail, POP3, and SMTP
http://www.beewyz.com/freeaccounts.php
------------------------------
Date: Thu, 01 Jul 2010 04:19:47 +0000
From: John Kelly <jak@isp2dial.com>
Subject: Re: The daemon helper, dh is its name
Message-Id: <4a5o265dfr04c83r2tbbf0fcdinbv785td@4ax.com>
On Wed, 30 Jun 2010 23:06:33 -0500, Tad McClellan <tadmc@seesig.invalid>
wrote:
>Ben Morrow <ben@morrow.me.uk> wrote:
>>
>> Quoth John Kelly <jak@isp2dial.com>:
>>>
>>> The daemon helper, dh is its name.
>>>
>>> It's a small C program that starts any program or shell command as a
>>> daemon, then gets out of the way.
>> Why are you posting this here?
>Maybe because it is "news", as in Network News Transfer Protocol?
Because it can start a Perl script as a daemon, without any need to
fork,setsid,exec in your perl script. I use it myself, to start Perl
scripts as never ending daemons.
Not every post must answer a question. People like to read news too,
though I understand why control freaks hate news, as it threatens their
territorial domain.
--
Web mail, POP3, and SMTP
http://www.beewyz.com/freeaccounts.php
------------------------------
Date: Wed, 30 Jun 2010 22:00:55 -0700
From: Jürgen Exner <jurgenex@hotmail.com>
Subject: Re: The daemon helper, dh is its name
Message-Id: <248o261doskvb5po1540pf2410hvpp2f0d@4ax.com>
John Kelly <jak@isp2dial.com> wrote:
>On Wed, 30 Jun 2010 23:06:33 -0500, Tad McClellan <tadmc@seesig.invalid>
>>Ben Morrow <ben@morrow.me.uk> wrote:
>>> Quoth John Kelly <jak@isp2dial.com>:
>>>> It's a small C program that starts any program or shell command as a
>>>> daemon, then gets out of the way.
>
>>> Why are you posting this here?
>
>Because it can start a Perl script as a daemon,
I bet it can start a Haskell or C# or Lisp program, too. Did you post in
the corresponding groups for those languages too?
jue
------------------------------
Date: Thu, 01 Jul 2010 05:22:21 +0000
From: John Kelly <jak@isp2dial.com>
Subject: Re: The daemon helper, dh is its name
Message-Id: <0e8o26tr134omida85ts4cj065bn185j6m@4ax.com>
On Wed, 30 Jun 2010 22:00:55 -0700, Jürgen Exner <jurgenex@hotmail.com>
wrote:
>John Kelly <jak@isp2dial.com> wrote:
>>On Wed, 30 Jun 2010 23:06:33 -0500, Tad McClellan <tadmc@seesig.invalid>
>>>Ben Morrow <ben@morrow.me.uk> wrote:
>>>> Quoth John Kelly <jak@isp2dial.com>:
>>>>> It's a small C program that starts any program or shell command as a
>>>>> daemon, then gets out of the way.
>>>> Why are you posting this here?
>>Because it can start a Perl script as a daemon,
>I bet it can start a Haskell or C# or Lisp program, too. Did you post in
>the corresponding groups for those languages too?
Not yet.
It's topical for a Perl group, because Perl provides sockets and other
features typically used in daemons. The daemon helper lets you omit the
Perl code required for daemon bootstrapping, and focus more readily on
your application, saving time and work.
--
Web mail, POP3, and SMTP
http://www.beewyz.com/freeaccounts.php
------------------------------
Date: Thu, 01 Jul 2010 07:39:01 -0500
From: Ted Zlatanov <tzz@lifelogs.com>
Subject: Re: The daemon helper, dh is its name
Message-Id: <87y6dv5qca.fsf@lifelogs.com>
On Thu, 01 Jul 2010 05:22:21 +0000 John Kelly <jak@isp2dial.com> wrote:
JK> It's topical for a Perl group, because Perl provides sockets and other
JK> features typically used in daemons. The daemon helper lets you omit the
JK> Perl code required for daemon bootstrapping, and focus more readily on
JK> your application, saving time and work.
I don't think it's relevant to Perl specifically as it does not offer
any features Perl does not have, does not extend or contribute to
existing Perl code, and has no Perl interfaces. It's like posting here
about your new car because it can drive you to work where you could
write Perl code.
You should try to popularize your software but this way you will just
annoy people. Try reddit.com for instance.
Ted
------------------------------
Date: Thu, 01 Jul 2010 13:21:55 +0000
From: John Kelly <jak@isp2dial.com>
Subject: Re: The daemon helper, dh is its name
Message-Id: <ui4p26hsuefmckronpp3re1v7b7hrq38md@4ax.com>
On Thu, 01 Jul 2010 07:39:01 -0500, Ted Zlatanov <tzz@lifelogs.com>
wrote:
>On Thu, 01 Jul 2010 05:22:21 +0000 John Kelly <jak@isp2dial.com> wrote:
>
>JK> It's topical for a Perl group, because Perl provides sockets and other
>JK> features typically used in daemons. The daemon helper lets you omit the
>JK> Perl code required for daemon bootstrapping, and focus more readily on
>JK> your application, saving time and work.
>
>I don't think it's relevant to Perl specifically as it does not offer
>any features Perl does not have
How would you know that without using it.
>does not extend or contribute to existing Perl code, and has no Perl
>interfaces.
So I can't discuss awk, sed, or shell features, and compare or contrast
them to Perl features, because they don't have "Perl interfaces"?
>It's like posting here about your new car because it can drive you
>to work where you could write Perl code.
That's a stretched analogy.
>You should try to popularize your software but this way you will just
>annoy people.
Maybe. But popularity is not my goal. It's a niche tool, not many
people attempt to write daemons of any kind, much less in Perl. I put
it out there for the few who may. It helps me save work and time, and
it can help other people too.
If you're not interested in a thread, or it seems off topic to you, why
not ignore it. Every complaint is another opportunity for me to discuss
it.
>Try reddit.com for instance
Thanks, but it looks too noisy to be helpful.
--
Web mail, POP3, and SMTP
http://www.beewyz.com/freeaccounts.php
------------------------------
Date: Thu, 01 Jul 2010 10:10:51 -0400
From: Sherm Pendley <spamtrap@shermpendley.com>
Subject: Re: The daemon helper, dh is its name
Message-Id: <m27hlfe1hw.fsf@shermpendley.com>
John Kelly <jak@isp2dial.com> writes:
> If you're not interested in a thread, or it seems off topic to you, why
> not ignore it.
Doing so encourages more off-topic threads. Also, there's a chance (a
small one, given your past behavior) that someone doesn't realize that
they're behaving badly, and may therefore appreciate being told about
it, so as to avoid being rude in the future.
> Thanks, but it looks too noisy to be helpful.
That's what happens in a free-for-all which doesn't take topicality
very seriously. So the question is, why do you want to turn this group
into such an unhelpful place as that?
sherm--
--
Sherm Pendley <www.shermpendley.com>
<www.camelbones.org>
Cocoa Developer
------------------------------
Date: Thu, 01 Jul 2010 14:39:35 +0000
From: John Kelly <jak@isp2dial.com>
Subject: Re: The daemon helper, dh is its name
Message-Id: <de9p265qc72pepmh2361nq0590icumk7r6@4ax.com>
On Thu, 01 Jul 2010 10:10:51 -0400, Sherm Pendley
<spamtrap@shermpendley.com> wrote:
>John Kelly <jak@isp2dial.com> writes:
>
>> If you're not interested in a thread, or it seems off topic to you, why
>> not ignore it.
>Doing so encourages more off-topic threads.
I believe not.
>there's a chance ... that someone doesn't realize that they're behaving
>badly, and may therefore appreciate being told about it, so as to avoid
>being rude in the future.
Some people use newsgroups as a social structure where they hang out and
meet friends. So they expect newcomers to behave like themselves. But
I don't use newsgroups that way. To me they are an information resource
and little more. I'm not interested in your social group's approval.
>> Thanks, but it looks too noisy to be helpful.
>
>That's what happens in a free-for-all which doesn't take topicality
>very seriously. So the question is, why do you want to turn this group
>into such an unhelpful place as that?
The complainers are making more noise than my original post. If you
can't ignore me, you have no one but yourselves to blame.
--
Web mail, POP3, and SMTP
http://www.beewyz.com/freeaccounts.php
------------------------------
Date: Thu, 01 Jul 2010 11:05:08 -0400
From: sreservoir <sreservoir@gmail.com>
Subject: Re: The daemon helper, dh is its name
Message-Id: <i0iarf$cf6$1@speranza.aioe.org>
On 7/1/2010 10:39 AM, John Kelly wrote:
> On Thu, 01 Jul 2010 10:10:51 -0400, Sherm Pendley
> <spamtrap@shermpendley.com> wrote:
>
>> John Kelly<jak@isp2dial.com> writes:
>>
>>> If you're not interested in a thread, or it seems off topic to you, why
>>> not ignore it.
>
>> Doing so encourages more off-topic threads.
>
> I believe not.
you believe wrongly.
>> there's a chance ... that someone doesn't realize that they're behaving
>> badly, and may therefore appreciate being told about it, so as to avoid
>> being rude in the future.
>
> Some people use newsgroups as a social structure where they hang out and
> meet friends. So they expect newcomers to behave like themselves. But
> I don't use newsgroups that way. To me they are an information resource
> and little more. I'm not interested in your social group's approval.
newsgroups _are_ social structure. treat them as such.
>>> Thanks, but it looks too noisy to be helpful.
>>
>> That's what happens in a free-for-all which doesn't take topicality
>> very seriously. So the question is, why do you want to turn this group
>> into such an unhelpful place as that?
>
> The complainers are making more noise than my original post. If you
> can't ignore me, you have no one but yourselves to blame.
see upthread.
--
"Six by nine. Forty two."
"That's it. That's all there is."
"I always thought something was fundamentally wrong with the universe."
------------------------------
Date: 01 Jul 2010 09:58:56 GMT
From: Heinrich.Mislik@univie.ac.at (Heinrich Mislik)
Subject: Re: Trouble installing DBD-Oracle-1.23 on Cygwin
Message-Id: <4c2c66e0$0$28520$3b214f66@usenet.univie.ac.at>
In article <c1ce7706-4213-48e7-a7da-e17997322dfb@b35g2000yqi.googlegroups.com>, davidmichaelkarr@gmail.com says...
>Failed to load Oracle extension and/or shared libraries:
>install_driver(Oracle) failed: Can't load '/c/frameworks/DBD-
>Oracle-1.23/blib/arch/auto/DBD/Oracle/Oracle.dll' for module
>DBD::Oracle: No such file or directory at /usr/lib/perl5/5.10/i686-
>cygwin/DynaLoader.pm line 201.
> at (eval 6) line 3
>Compilation failed in require at (eval 6) line 3.
>-----------------
>
>That file DOES exist, and it's permissions are 755.
Try ldd on this file to see, wether all DLLs could be found. You may
need to add the directory of the Oracle-Client (that's where oci.dll
resides) to the PATH variable. Here is what I get:
ldd blib/arch/auto/DBD/Oracle/Oracle.dll
ntdll.dll => /cygdrive/c/Windows/SysWOW64/ntdll.dll (0x77710000)
kernel32.dll => /cygdrive/c/Windows/syswow64/kernel32.dll (0x76c40000)
KERNELBASE.dll => /cygdrive/c/Windows/syswow64/KERNELBASE.dll (0x76ad0000)
cygwin1.dll => /usr/bin/cygwin1.dll (0x61000000)
ADVAPI32.DLL => /cygdrive/c/Windows/syswow64/ADVAPI32.DLL (0x76fd0000)
msvcrt.dll => /cygdrive/c/Windows/syswow64/msvcrt.dll (0x75720000)
sechost.dll => /cygdrive/c/Windows/SysWOW64/sechost.dll (0x75590000)
RPCRT4.dll => /cygdrive/c/Windows/syswow64/RPCRT4.dll (0x75b00000)
SspiCli.dll => /cygdrive/c/Windows/syswow64/SspiCli.dll (0x75280000)
CRYPTBASE.dll => /cygdrive/c/Windows/syswow64/CRYPTBASE.dll (0x75270000)
cyggcc_s-1.dll => /usr/bin/cyggcc_s-1.dll (0x67f00000)
cygssp-0.dll => /usr/bin/cygssp-0.dll (0x67280000)
OCI.dll => /usr/local/oracle/OCI.dll (0x10000000)
MSVCR71.dll => /cygdrive/c/Windows/system32/MSVCR71.dll (0x7c340000)
PSAPI.DLL => /cygdrive/c/Windows/syswow64/PSAPI.DLL (0x76c30000)
cygperl5_10.dll => /usr/bin/cygperl5_10.dll (0x71520000)
cygcrypt-0.dll => /usr/bin/cygcrypt-0.dll (0x30000)
Cheers
Heinrich
--
Heinrich Mislik
Zentraler Informatikdienst der Universitaet Wien
A-1010 Wien, Universitaetsstrasse 7
Tel.: (+43 1) 4277-14056, Fax: (+43 1) 4277-9140
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>
Administrivia:
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
Back issues are available via anonymous ftp from
ftp://cil-www.oce.orst.edu/pub/perl/old-digests.
#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 V11 Issue 3014
***************************************