The question is described on the title, basically I'd like to execute a command line from scheme, let's say 'ls' and obtaining the output. So my questions are:
- Is it possible?
- How?
Thanks a lot in advance!
By the way I use Guille.
The question is described on the title, basically I'd like to execute a command line from scheme, let's say 'ls' and obtaining the output. So my questions are:
Thanks a lot in advance!
By the way I use Guille.
You need one of these
system
andsystem*
.Example:
(system "ls")
From the documentation: Guile Reference