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

388 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 best solutions below

1
On

PLT/Racket supports system, in different versions.

0
On

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

0
On

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