Is there a Scheme equivalent to SBCL's run-program?

381 views Asked by At

I can run (run-program "/usr/ls" '()) in SBCL. Is there an equivalent in any Scheme implementation?

3

There are 3 answers

1
Martin v. Löwis On

PLT/Racket supports system, in different versions.

0
Greg Hewgill On

GNU Guile also supports system and other related functions (such as OS-level fork and exec).

0
Hans Nowak On

Chicken has system as well. In Gauche it's called sys-system.