Re: Any Good SCM tool to manage Perl Code locally

2010-03-14 Thread Kenneth Wolcott
Hi; On Sun, Mar 14, 2010 at 23:12, Dan Fish wrote: > You might want to have a look at Seapine Surround. It's not opensource, > but you can get a free single-user license and it's a very good SCM program. > It's also available on a variety of platforms. > http://www.seapine.com/scmlicensing.h

RE: Any Good SCM tool to manage Perl Code locally

2010-03-14 Thread Dan Fish
You might want to have a look at Seapine Surround. It's not opensource, but you can get a free single-user license and it's a very good SCM program. It's also available on a variety of platforms. http://www.seapine.com/scmlicensing.html -Dan -Original Message- From: Parag Kalra [mail

Re: Any Good SCM tool to manage Perl Code locally

2010-03-14 Thread David Christensen
Parag Kalra wrote: So wanted to know if it is a possible to use any free opensource tool to manage code (only locally) where actual and current code resides in different local directory and I can checkout code locally in some other directory (in my working directory) CVS can do that; it has met

Re: would like "pure" Perl solution to count of files in directory (nested subdirectories too)

2010-03-14 Thread John W. Krahn
Kenneth Wolcott wrote: Hi; Hello, Re: would like "pure" Perl solution to count of files in directory (nested subdirectories too) I would like to have a "pure" Perl solution to "find dir | wc -l" perl -MFile::Find -le'find sub { ++$count }, "dir"; print $count' John -- The programmer is

Re: Any Good SCM tool to manage Perl Code locally

2010-03-14 Thread Raymond Wan
Hi Parag/Shlomi, Shlomi Fish wrote: Here is the thing - I mainly code in Perl and Bash and I don't use any SCM tool. And the reason I don't use it is because even if I configure a SCM server - I should be able to access it both from home and work place (which is unlikely to happen) Then what

Re: Any Good SCM tool to manage Perl Code locally

2010-03-14 Thread Shlomi Fish
On Sunday 14 Mar 2010 09:12:40 Parag Kalra wrote: > Hi All, > > Although it is not related to Perl directly and might be little strange > question but still thought of consulting Perl gurus. > > Here is the thing - I mainly code in Perl and Bash and I don't use any SCM > tool. And the reason I do

Re: would like "pure" Perl solution to count of files in directory (nested subdirectories too)

2010-03-14 Thread Shlomi Fish
On Sunday 14 Mar 2010 06:47:57 Kenneth Wolcott wrote: > Hi; > > Re: would like "pure" Perl solution to count of files in directory (nested > subdirectories too) > > I would like to have a "pure" Perl solution to "find dir | wc -l" > This won't work properly if your filenames contain newlines.