On Sat, 2006-10-28 at 08:59 -0600, Jack Daniels (Butch) wrote:
> I work with library cataloguing records and am trying to accomplish this
> amazing feat.
>
> Trying is no problem, amazing feat is eluding me
>
> I need to find all records with the same ISBN number (field 020)save all
> matching
On 10/28/2006 01:52 AM, perl pra wrote:
On 10/26/06, Mumia W. <[EMAIL PROTECTED]> wrote:
On 10/26/2006 05:47 AM, perl pra wrote:
> hi ,
>
> I want to pass a command argument to perl script with double quotes ("
);
>
>
> below is my scenario
>
> my xml file is something like this ..
>
>
>
>
>
Jenda Krynicky wrote:
> From: "Dr.Ruud" <[EMAIL PROTECTED]>
>>Ovid schreef:
>>
>>>my $text = do { local $/; <$fh> };
>>There is a problem with this idiom: it uses about twice the memory of
>>this variant:
>>
>> my $text ; { local $/ ; $text = <$fh> }
>>
>>So if your files can be bi
From: "Dr.Ruud" <[EMAIL PROTECTED]>
> Ovid schreef:
>
> > my $text = do { local $/; <$fh> };
>
> There is a problem with this idiom: it uses about twice the memory of
> this variant:
>
> my $text ; { local $/ ; $text = <$fh> }
>
> So if your files can be big (related to the am
In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] says...
> Hi,
>
> As of 3:43:18 pm here in Manila, Philippines, I can't access
> search.cpan.org.. Any idea why?
>
Either a computer between you and CPAN is down temporarily, or very
busy, or perhaps your Domain Name Server is down or extremel
From: "Derek B. Smith" <[EMAIL PROTECTED]>
> I want to get a listing of Window services and each
> associated "status" and its "startup type." I looked
> at Win32::Daemon::Simple but wasn't sure if this is a
> good module for doing so?
No it's not. Win32::Daemon::Simple is to be used if you are
I work with library cataloguing records and am trying to accomplish this
amazing feat.
Trying is no problem, amazing feat is eluding me
I need to find all records with the same ISBN number (field 020)save all
matching records which will result in more than 1 record with the same ISBN,
then som
perl pra wrote:
>
> On 10/26/06, Mumia W. <[EMAIL PROTECTED]> wrote:
>>
>> On 10/26/2006 05:47 AM, perl pra wrote:
>> > hi ,
>> >
>> > I want to pass a command argument to perl script with double quotes ("
>> );
>> >
>> >
>> > below is my scenario
>> >
>> > my xml file is something like this ..
>>