misc:software:Common Lisp:sbcl:環境変数の取得

misc:software:Common Lisp:sbcl:環境変数の取得

環境変数の取得

; Querying the process environment - SBCL 1.0.29 User Manual
; http://www.sbcl.org/manual/Querying-the-process-environment.html
(sb-ext:posix-getenv "path")
; セミコロン区切りの値をリストとして取得する
(require 'asdf)
(asdf:oos 'asdf:load-op :cl-ppcre)

(defun getenv-list (name)
  (ppcre:split ";" (sb-ext:posix-getenv name)))

Last modified : 2016/12/28 17:33:37 JST