RE: [Perl-unix-users] Executable files

2003-03-31 Thread Burak Gürsoy
Try the PAR module... it comes with the "pp" utility. pp -o hello hello.pl The Author calls it "perlcc that works" :) ignore perlcc... its an incomplete toy... > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf > Of [EMAIL PROTECTED] > Sent: Friday, Mar

AW: [Perl-unix-users] How do I Join two or more perl modules in one file?

2003-03-31 Thread EXTERN Chakirov Timour \(TZ CIS; DS/ESQ3\)
Unfortunately proposed approach does not help in my situation. I will describe my task more deeply, and I hope you could help me to solve it. code structure (comments after # sign): main.pl # main perl module main # c-shell wrapper to call main.pl main.bat # ms-dos batch wrapper to call mai

Re: AW: [Perl-unix-users] How do I Join two or more perl modules in o ne file?

2003-03-31 Thread Jenda Krynicky
From: "EXTERN Chakirov Timour \(TZ CIS; DS/ESQ3\)" <[EMAIL PROTECTED]> > Unfortunately proposed approach does not help in my situation. I will > describe my task more deeply, and I hope you could help me to solve > it. > > code structure (comments after # sign): > > main.pl # main perl module >

Re: [Perl-unix-users] MySql Update Error

2003-03-31 Thread Anthony Ettinger
Can you provide the lines that have your $statementHandler and sql code? --- "V. Rajaraman [Sys-Support]" <[EMAIL PROTECTED]> wrote: > > Hi All, > > I use DBI to update Mysql table, when i do that i > facing the below error. > What is the error ? > > Error : > > can't execute the query: DBI:

RE: [Perl-unix-users] How do I Join two or more perl modules in one file?

2003-03-31 Thread EXTERN Chakirov Timour \(TZ CIS; DS/ESQ3\)
> > First, all this stuff should work "as is", w/o any changes in > > structure. Second, I have to pack these modules and main > script in one > > big file to send it to a customer. > > See PAR on http://search.cpan.org/search?query=PAR&mode=module > > Jenda Sorry, but PAR requires perl v. 5.00

[Perl-unix-users] grep

2003-03-31 Thread Mundell, R. \(Ronald\)
Title: grep Good Day All I need to know how to do multiple grep's with a single grep. Ronald Mundell This email and any accompanying attachments may contain confidential and proprietary information.  This information is private and protected by law and, accordingly, if you are not

Re: [Perl-unix-users] grep

2003-03-31 Thread Jenda Krynicky
From: "Mundell, R. \(Ronald\)" <[EMAIL PROTECTED]> > I need to know how to do multiple grep's with a single grep. What do you mean? You mean you want to filter the list using several conditions? @result = grep {condition1($_) and condition2($_) and condition3($_)} @list; Or you want to