one liner for replacing under Windows?

2008-06-14 Thread Octavian Rasnita
Hi, Is there a one-liner command that can replace a certain text with another in more files specified with wildcards like *.html that works under Windows cmd? ...Of course, I know how to do that if I embed a full program in a single line, but it would be too long and I wonder if there is a

Re: one liner for replacing under Windows?

2008-06-14 Thread Xavier Noria
On Sat, Jun 14, 2008 at 9:56 AM, Octavian Rasnita [EMAIL PROTECTED] wrote: Is there a one-liner command that can replace a certain text with another in more files specified with wildcards like *.html that works under Windows cmd? Since you ask this you probably know the Windows shell does not

vim for perl

2008-06-14 Thread bin.lv
Hi, A very basic question,how to do some configuration, in order to make my Vim text editor more suitable for programming perl? any suggestion would be appreciated! 2008-06-14 bin.lv

Re: vim for perl

2008-06-14 Thread Levente Kovacs
Hi, First of all, google is your friend. Second, http://www.vim.org/scripts/script.php?script_id=556 Cheers, Levente On Sat, 14 Jun 2008 16:44:20 +0800 bin.lv [EMAIL PROTECTED] wrote: Hi, A very basic question,how to do some configuration, in order to make my Vim text editor more

Re: one liner for replacing under Windows?

2008-06-14 Thread Octavian Rasnita
From: Xavier Noria [EMAIL PROTECTED] On Sat, Jun 14, 2008 at 9:56 AM, Octavian Rasnita [EMAIL PROTECTED] wrote: Is there a one-liner command that can replace a certain text with another in more files specified with wildcards like *.html that works under Windows cmd? Since you ask this you

Re: one liner for replacing under Windows?

2008-06-14 Thread Xavier Noria
On Sat, Jun 14, 2008 at 1:05 PM, Octavian Rasnita [EMAIL PROTECTED] wrote: From: Xavier Noria [EMAIL PROTECTED] On Sat, Jun 14, 2008 at 9:56 AM, Octavian Rasnita [EMAIL PROTECTED] wrote: Is there a one-liner command that can replace a certain text with another in more files specified with

module question

2008-06-14 Thread Richard Lee
trying to follow some modules examples.. but have a quick quesiton Below pm works if I don't use strict and use @ISA and @EXPORT.. but not when I use strict and my @ISA and my @EXPORT am i not suppose to use strict for modules?? --- only works..

Re: module question

2008-06-14 Thread Jeff Peng
On Sat, Jun 14, 2008 at 11:21 PM, Richard Lee [EMAIL PROTECTED] wrote: trying to follow some modules examples.. but have a quick quesiton Below pm works if I don't use strict and use @ISA and @EXPORT.. but not when I use strict and my @ISA and my @EXPORT @ISA and @EXPORT are package

Re: module question

2008-06-14 Thread Richard Lee
Jeff Peng wrote: On Sat, Jun 14, 2008 at 11:21 PM, Richard Lee [EMAIL PROTECTED] wrote: trying to follow some modules examples.. but have a quick quesiton Below pm works if I don't use strict and use @ISA and @EXPORT.. but not when I use strict and my @ISA and my @EXPORT

Re: module question

2008-06-14 Thread Jeff Peng
On Sun, Jun 15, 2008 at 2:19 AM, Richard Lee [EMAIL PROTECTED] wrote: thank you! it works now. First time ever using our.. I read about it but never had to use it till now.. just have to read up on it more. You may also read this classical article for Perl's variable scope: