Re: Regexp substitution

2006-07-18 Thread David Nicol
On 7/17/06, Thurn, Martin <[EMAIL PROTECTED]> wrote: > You guys and gals should REALLY start using q{} and qq{} for your > literal strings. And especially, use qr{} for strings intended to be > used as a regex!!! > - - Martin yes, yes! I think you can $r1=qr{$p1} and eliminate all evals (except

Re: Zipping/unzipping files on windows

2006-07-18 Thread David Stanaway
The Archive::Zip is standard with an activeperl install. You would be foolish not to use it. Its portable and works well. If you wanted to use OLE and the XP zip stuff, knock yourself out. Sham Prasad wrote: > Thanks all i was able to do it using the module in just few lines. > > Sham > > On 7

Re: Zipping/unzipping files on windows

2006-07-18 Thread Sham Prasad
Thanks all i was able to do it using the module in just few lines.  Sham  On 7/18/06, $Bill Luebkert <[EMAIL PROTECTED]> wrote: Sham Prasad wrote:> Hi ,>> can i do without using any module?Sure - just duplicate all the code you need from the module, but that would seem like a silly solution. __

RE: Zipping/unzipping files on windows

2006-07-18 Thread Brian Raven
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sham Prasad Sent: 18 July 2006 09:23 To: activeperl@listserv.activestate.com Subject: Zipping/unzipping files on windows > Hi All, > > Does anyone know how to create a zip file on windows using perl? > I have a folder containing .sq

Re: Zipping/unzipping files on windows

2006-07-18 Thread $Bill Luebkert
Sham Prasad wrote: > Hi All, > > Does anyone know how to create a zip file on windows using perl? > I have a folder containing .sql files which i want to put all of them to > a single zip file and then transfer it to another machine and then unzip it. > does anybody know how to do it? There are

Zipping/unzipping files on windows

2006-07-18 Thread Sham Prasad
Hi All,   Does anyone know how to create a zip file on windows using perl? I have a folder containing .sql files which i want to put all of them to a single zip file and then transfer it to another machine and then unzip it. does anybody know how to do it?     Thanks Sham