Re: match data based on matching field

2006-10-28 Thread Ken Foskey
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

Re: How to pass string in command line argument.

2006-10-28 Thread Mumia W.
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 .. > > > > >

Re: Analize Java source file with perl?

2006-10-28 Thread John W. Krahn
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

Re: Analize Java source file with perl?

2006-10-28 Thread Jenda Krynicky
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

Re: Can't access search.cpan.org

2006-10-28 Thread C . R .
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

Re: win32 services

2006-10-28 Thread Jenda Krynicky
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

match data based on matching field

2006-10-28 Thread Jack Daniels (Butch)
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

Re: How to pass string in command line argument.

2006-10-28 Thread Rob Dixon
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 .. >>