From ... From: Erik Naggum Subject: Re: lisp and unix system calls Date: 1999/11/30 Message-ID: <3152920521742161@naggum.no>#1/1 X-Deja-AN: 554692315 References: <81v226$ak2$1@nnrp1.deja.com> mail-copies-to: never X-Complaints-To: newsmaster@eunet.no X-Trace: oslo-nntp.eunet.no 943931769 10954 195.0.192.66 (30 Nov 1999 03:16:09 GMT) Organization: Naggum Software; +47 8800 8879 or +1 510 435 8604; fax: +47 2210 9077; http://www.naggum.no NNTP-Posting-Date: 30 Nov 1999 03:16:09 GMT Newsgroups: comp.lang.lisp * expo | i want to make a system call to 'grep' or similar command, perhaps | even a shell script and i was wondering on how to do such a thing. hm. a "system call" is generally a call to a kernel service. the "system" C function, however, just runs a shell command. Allegro CL offers the function RUN-SHELL-COMMAND which does exactly this. #:Erik