gpt4 book ai didi

lisp - 使用 gnu clisp 运行 shell 命令

转载 作者:太空宇宙 更新时间:2023-11-03 18:39:27 25 4
gpt4 key购买 nike

我正在尝试为 clisp 创建一个像这样工作的“系统”命令

(setq result (system "pwd"))

;;now result is equal to /my/path/here

我有这样的东西:

(defun system (cmd)
(ext:run-program :output :stream))

但是,我不确定如何将流转换为字符串。我已经多次查看 hyperspec 和谷歌。

编辑:使用 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

最佳答案

是这样的吗?

版本 2:

(defun copy-stream (in out)
(loop for line = (read-line in nil nil)
while line
do (write-line line out)))

(defun system (cmd)
(with-open-stream (s1 (ext:run-program cmd :output :stream))
(with-output-to-string (out)
(copy-stream s1 out))))


[6]> (system "ls")
"#.emacs#
Applications
..."

关于lisp - 使用 gnu clisp 运行 shell 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3019142/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com