From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Amirouche Boubekki Newsgroups: gmane.lisp.guile.user Subject: Re: here is one way to implement file globbing Date: Tue, 16 Oct 2018 17:12:25 +0200 Message-ID: References: <92c495d8442433c77df97732730ae60c@posteo.de> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1539702715 26532 195.159.176.226 (16 Oct 2018 15:11:55 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 16 Oct 2018 15:11:55 +0000 (UTC) User-Agent: Roundcube Webmail/1.1.2 Cc: guile-user@gnu.org, guile-user To: sph@posteo.eu Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Tue Oct 16 17:11:51 2018 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gCR0g-0006ne-71 for guile-user@m.gmane.org; Tue, 16 Oct 2018 17:11:50 +0200 Original-Received: from localhost ([::1]:58624 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCR2m-0006el-5V for guile-user@m.gmane.org; Tue, 16 Oct 2018 11:14:00 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39232) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCR1Y-0005ye-JA for guile-user@gnu.org; Tue, 16 Oct 2018 11:12:48 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gCR1U-0003hr-Rs for guile-user@gnu.org; Tue, 16 Oct 2018 11:12:42 -0400 Original-Received: from relay6-d.mail.gandi.net ([217.70.183.198]:48189) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gCR1M-0003NL-Kq; Tue, 16 Oct 2018 11:12:32 -0400 Original-Received: from webmail.gandi.net (webmail12.sd4.0x35.net [10.200.201.12]) (Authenticated sender: amirouche@hypermove.net) by relay6-d.mail.gandi.net (Postfix) with ESMTPA id C6E38C0017; Tue, 16 Oct 2018 15:12:25 +0000 (UTC) In-Reply-To: <92c495d8442433c77df97732730ae60c@posteo.de> X-Sender: amirouche@hypermove.net X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.183.198 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.org gmane.lisp.guile.user:14935 Archived-At: On 2018-10-16 01:12, tantalum wrote: > im sure it is not the optimal way to do it, and currently it fails on > file access errors and there might be bugs, but it has cool features > and i just wanted to share. [...] > here is the code with reduced dependencies so that anybody with only > guile should be able to run it: > http://files.sph.mn/s/computer/guile-fsg.scm > > it is now part of sph-lib: > https://github.com/sph-mn/sph-lib/blob/master/modules/sph/filesystem.scm > Thanks for sharing.