Using Chez Scheme, I tried to capture the output of an external command into a string port (see https://www.scheme.com/csug8/io.html):
(define output
(with-output-to-string (lambda () (system "ls -a")))
)
The output of (system "ls -a")
is displayed on the screen, and output
is empty (tested as a script with chezscheme 9.5.4 on Linux).
The same code works correctly with Racket 8.3 [CS].
The following works with Chez Scheme 9.5.8 on Linux.