Skip to content

Instantly share code, notes, and snippets.

@cosmo0920
Created January 22, 2013 23:28
Show Gist options
  • Save cosmo0920/4599840 to your computer and use it in GitHub Desktop.
Save cosmo0920/4599840 to your computer and use it in GitHub Desktop.
カーネルのバージョンを取ってくるELisp
(defun kernel-version()(replace-regexp-in-string "\n+$" "" (shell-command-to-string "uname -r")))
(message "kernel version is %s" (kernel-version))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment