SBCL (directory "*") is filtering out some file names based on extension. How do I get it to return all files, or especially all files matching a pattern (as in bash globing)
(directory "*") ;Lists some files, not all (directory "MyFile") ;Lists some files, but again, filters by extension
Extensions that seem to me ignored... at least *.lisp is not listed.
SBCL 1.1.2-1.fc18 on Fedora18
./*or/*and would work from there. - user797257