15 lines
378 B
EmacsLisp
15 lines
378 B
EmacsLisp
;;; 20-top-cpu-fields-lesson.el --- top-cpu-fields-lesson
|
|
|
|
(defun top-cpu-fields-lesson ()
|
|
(interactive)
|
|
(delete-other-windows)
|
|
(switch-to-buffer "*Top Lesson*")
|
|
(erase-buffer)
|
|
(insert "Use 'top' and observe CPU fields.\n")
|
|
(split-window-below)
|
|
(other-window 1)
|
|
(ansi-term (getenv "SHELL") "term")
|
|
(other-window -1))
|
|
|
|
;;; 20-top-cpu-fields-lesson.el ends here
|