我可以为 shell 命令指定目录吗?



我使用以下函数来运行shell命令:

(defun sh (cmd)
  #+clisp (shell cmd)
  #+ecl (si:system cmd)
  #+sbcl (sb-ext:run-program "/bin/sh" (list "-c" cmd) :input nil :output*standard-output*)
  #+clozure (ccl:run-program "/bin/sh" (list "-c" cmd) :input nil :output*standard-output*)))

例如,如何指定命令python -m CGIHTTPServer的当前目录?

真诚地!

在 ECL 中,您可以在 SYSTEM 之前使用 EXT:CHDIR,这会更改默认路径名默认值和当前目录的值,正如操作系统和 C 库所理解的那样。

顺便说一句:如果可能的话,使用(EXT:RUN-PROGRAM "command" list-of-args)

一种更便携的方法是使用路径名和动态绑定*default-pathname-defaults*,这将有效地设置您当前的工作目录。我今天遇到了同样的问题。以下是 Conrad Barski 对 Land of Lisp 文本dot->png的工作改编,它指定了当前的工作目录:

(defun dot->png (filespec thunk)
  "Save DOT information generated by a thunk on a *STANDARD-OUTPUT* to a FILESPEC file. Then use FILESPEC to create a corresponding png picture of a graph."
  ;; dump DOT file first
  (let ((*default-pathname-defaults*
          (make-pathname :directory (pathname-directory (pathname filespec)))))
    ;; (format t "pwd (curr working dir): ~A~%" *default-pathname-defaults*)
    (with-open-file (*standard-output* 
                     filespec
                     :direction :output
                     :if-exists :supersede)
      (funcall thunk))
    #+sbcl
    (sb-ext:run-program "/bin/sh" 
                        (list "-c" (concatenate 'string "dot -Tpng -O " filespec))
                        :input nil
                        :output *standard-output*)
    #+clozure
    (ccl:run-program "/bin/sh" 
                     (list "-c" (concatenate 'string "dot -Tpng -O" filespec))
                     :input nil
                     :output *standard-output*)))

发布希望这对处于类似情况并遇到此线程的人有用。

相关内容

  • 没有找到相关文章

最新更新