Nikodemus Siivola recently updated two of his projects [via Markus Fix]:
Linedit 0.15.12 is a readline-like library in Lisp that uses UFFI on unix platforms to provide the following features:
Linedit works in Linux, FreeBSD and Darwin.
Osicat, at version 0.4.0, is “a lightweight operating system interface for Common Lisp on Unix-platforms.” It offers functionality related to
An example of using osicat:
CL-USER(5): (with-directory-iterator (next "/var") (loop for entry = (next) while entry when (member :group-write (file-permissions entry)) collect entry)) (#P"local/" #P"lock/" #P"tmp/" #P"mail/")Posted by jjwiseman at May 07, 2004 09:05 AM