我試圖爲CLISP是這樣工作的與GNU CLISP運行shell命令
(setq result (system "pwd"))
;;now result is equal to /my/path/here
創建一個「系統」命令,我有這樣的事情:
(defun system (cmd)
(ext:run-program :output :stream))
但是,我不知道如何將流轉換爲字符串。我已經回顧了hyperspec和谷歌不止幾次。
編輯:用Ranier的指揮工作,並使用與輸出到流,
(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
問題:什麼是:輸出說明什麼?是一個命名參數的語法? – 2010-06-10 23:41:27
此外,您的建議不起作用,我添加了以上信息 – 2010-06-10 23:47:41
:輸出是一個參數,它設置輸出將指向的位置。在這裏它會被引導到一個流。 – 2011-05-18 04:08:03