我正在尝试为 clisp 创建一个像这样工作的“系统”命令
(setq result (system "pwd"))
;;now result is equal to /my/path/here
我有这样的事情:
(defun system (cmd)
(ext:run-program :output :stream))
但是,我不确定如何将流转换为字符串。我已经多次审查了超规格和谷歌。
编辑:使用 Ranier 的命令并使用 with-output-to-stream,
(defun system (cmd)
(with-output-to-string (stream)
(ext:run-program cmd :output stream)))
然后尝试运行grep
,这是我的路径......
[11]> (system "grep")
*** - STRING: argument #<OUTPUT STRING-OUTPUT-STREAM> should be a string, a
symbol or a character
The following restarts are available:
USE-VALUE :R1 Input a value to be used instead.
ABORT :R2 Abort main loop
Break 1 [12]> :r2