woo
woo copied to clipboard
uiop:run-program with string output
Hi,
I was looking at how different projects on quicklisp use uiop:run-program and came across this snippet in woo:
(with-output-to-string (s)
(uiop:run-program "uname -r"
:output s
:ignore-error-status t))))
I wanted to let you know that passing a stream as uiop:run-program
's :output
argument, especially one that isn't a file stream, is not very portable. But you can also get string output directly from uiop:run-program
(that's far more portable because it internally uses a file) as follows:
(uiop:run-program '("uname" "-r") :output '(:string :stripped t))