Re: a small SBCL question
- From: Zach Beane <xach@xxxxxxxx>
- Date: 29 Dec 2006 20:26:13 -0500
Zach Beane <xach@xxxxxxxx> writes:
Wildcard expansion is done by the shell, not by programs like "ls"
(most of the time, anyway). RUN-PROGRAM uses something like exec(2) to
run programs. If you wanted shell-style wildcard expansion, you'd have
to run a shell:
(sb-ext:run-program "/bin/sh" (list "-c" "/tmp/*.lisp"))
Oops, this should be:
(sb-ext:run-program "/bin/sh" (list "-c" "/bin/ls /tmp/*.lisp"))
Zach
.
- References:
- a small SBCL question
- From: TorvoSollazzo@xxxxxxxxxxxx
- Re: a small SBCL question
- From: Pascal Bourguignon
- Re: a small SBCL question
- From: dneu
- Re: a small SBCL question
- From: Zach Beane
- a small SBCL question
- Prev by Date: Re: a small SBCL question
- Next by Date: Re: funcallable-standard-class question
- Previous by thread: Re: a small SBCL question
- Next by thread: Save a class into xml file?
- Index(es):