[emacs] elisp에서 운영 체제를 확인하는 방법은 무엇입니까?

ELisp에서 실행중인 OS Emacs를 프로그래밍 방식으로 어떻게 확인합니까?

.emacsOS 에 따라 다른 코드를 실행하고 싶습니다 .



답변

system-type변수 :

system-type is a variable defined in `C source code'.
Its value is darwin

Documentation:
Value is symbol indicating type of operating system you are using.
Special values:
  `gnu'         compiled for a GNU Hurd system.
  `gnu/linux'   compiled for a GNU/Linux system.
  `darwin'      compiled for Darwin (GNU-Darwin, Mac OS X, ...).
  `ms-dos'      compiled as an MS-DOS application.
  `windows-nt'  compiled as a native W32 application.
  `cygwin'      compiled using the Cygwin library.
Anything else indicates some sort of Unix system.


답변

elisp를 처음 사용하는 사람들을 위해 샘플 사용법 :

(if (eq system-type 'darwin)
  ; something for OS X if true
  ; optional something if not
)


답변

시스템 유형에 따라 코드를 쉽게 실행할 수있는 간단한 매크로를 만들었습니다.

(defmacro with-system (type &rest body)
  "Evaluate BODY if `system-type' equals TYPE."
  (declare (indent defun))
  `(when (eq system-type ',type)
     ,@body))

(with-system gnu/linux
  (message "Free as in Beer")
  (message "Free as in Freedom!"))


답변

.emacs에는 system-type뿐만 아니라 window-system변수도 있습니다. x 전용 옵션, 터미널 또는 macOS 설정 중에서 선택하려는 경우 유용합니다.


답변

이제 Windows 용 Linux 하위 시스템 (Windows 10의 bash) system-typegnu/linux있습니다. 이 시스템 유형을 감지하려면 다음을 사용하십시오.

(if
    (string-match "Microsoft"
         (with-temp-buffer (shell-command "uname -r" t)
                           (goto-char (point-max))
                           (delete-char -1)
                           (buffer-string)))
    (message "Running under Linux subsystem for Windows")
    (message "Not running under Linux subsystem for Windows")
  )


답변

이것은 대부분 이미 답변되어 있지만 관심있는 사람들을 위해 FreeBSD에서 이것을 테스트했고보고 된 값은 “berkeley-unix”였습니다.


답변

system-configuration빌드 시스템의 차이를 조정하려는 경우 ( 최소한 24-26 버전에서는)도 있습니다. 그러나이 변수의 문서는 system-type변수 문서처럼 포함 할 수있는 가능한 값을 설명 하지 않습니다.