Files
linuxplus/20-top-cpu-fields-lesson.el
Scott C. MacCallum f9ae4d3763 Adding files
2026-04-21 15:13:54 -04:00

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