Re: [Boston.pm] relentless

2007-02-22 Thread Adriano Ferreira
On 2/21/07, Matt Herzog [EMAIL PROTECTED] wrote: On Wed, Feb 21, 2007 at 05:12:28PM -0200, Adriano Ferreira wrote: On 2/21/07, Matt Herzog [EMAIL PROTECTED] wrote: On Wed, Feb 21, 2007 at 10:42:17AM -0800, Matt Herzog wrote: On Wed, Feb 21, 2007 at 01:16:58PM -0500, Ronald J Kimball

[Boston.pm] OT: open source blog, forum, etc., software

2007-02-22 Thread Bobbi Fox
Those who were at the last boston.pm meeting may recall my asking if there was some place where I could find out about various open-source not-necessarily-perl-based blog/wiki/forum software. People kindly threw out some names of OS stuff they knew about. In the meantime, there must be something

[Boston.pm] glob() bug?

2007-02-22 Thread Kripa Sundar
Hi all, Is this a glob() bug, or am I overlooking something obvious? perldoc -f glob didn't help. TIA. The .[0-9]*[0-9] is globbed correctly when it is not inside braces. % touch a ab abcd a.777 % % perl -le \ 'print for glob(a{,b,b*d,.[0-9]*[0-9]}), ---, glob(a.[0-9]*[0-9])' a ab

Re: [Boston.pm] OT: open source blog, forum, etc., software

2007-02-22 Thread Ben Tilly
On 2/22/07, Bobbi Fox [EMAIL PROTECTED] wrote: Those who were at the last boston.pm meeting may recall my asking if there was some place where I could find out about various open-source not-necessarily-perl-based blog/wiki/forum software. People kindly threw out some names of OS stuff they

Re: [Boston.pm] OT: open source blog, forum, etc., software

2007-02-22 Thread Bobbi Fox
On Thu, 22 Feb 2007, Ben Tilly wrote: On 2/22/07, Bobbi Fox [EMAIL PROTECTED] wrote: Those who were at the last boston.pm meeting may recall my asking if there was some place where I could find out about various open-source not-necessarily-perl-based blog/wiki/forum software. People

Re: [Boston.pm] glob() bug?

2007-02-22 Thread Ben Tilly
It looks to me like a bug. Your expectation of the expansion looks correct to me, and on Linux I get the behaviour that you wanted from /bin/bash, /bin/sh (links to bash) and /bin/csh (links to /bin/tcsh). It is remotely possible that there is some real csh that disagrees, but if so then I'd

Re: [Boston.pm] glob() bug?

2007-02-22 Thread Kripa Sundar
It looks to me like a bug. Thanks for confirming my experience, Ben. I was getting tired of re-reading and re-typing my command lines to rule out stupid typo's. Incidentally, perl v5.8.3 shows the same buggy behaviour on solaris as well as linux. peace, || Ben Cohen tells us