Nikita Karetnikov <nik...@karetnikov.org> skribis: >> Like this: (system* "python" "setup.py" "install"). > > Could you elaborate?
‘system*’ is a Guile procedure that works like system(3), except that it executes the command directly, instead of via a shell. So: (system* "python" "setup.py" "install") runs the program ‘python’, found in $PATH, with the two arguments that follow. Does that clarify? Thanks, Ludo’.