Re: [Chicken-users] fnmatch egg

2014-07-30 Thread Michele La Monaca
Hi Caolan, thanks for the egg, much needed addition (though I would like to see it in the posix module rather than a separate egg). I used to workaround (the lack of) it through ##sys#glob-regexp which is another function I would like to be explicitly supported in core. A few suggestions if you

[Chicken-users] fnmatch egg

2014-07-27 Thread Caolan McMahon
I've just written some bindings to fnmatch(3), which provides shell-style wildcard pattern matching for filenames. Much like `glob` from the posix module, only it matches two strings, returning a boolean rather than descending directories and returning a list of matching filenames.

Re: [Chicken-users] fnmatch egg

2014-07-27 Thread Peter Bex
On Sun, Jul 27, 2014 at 11:54:07AM +0100, Caolan McMahon wrote: I've just written some bindings to fnmatch(3), which provides shell-style wildcard pattern matching for filenames. Much like `glob` from the posix module, only it matches two strings, returning a boolean rather than descending