Listing process - tutorial

This commit is contained in:
Jose 2023-02-05 19:18:28 -03:00
parent 869f25bb5e
commit fbba20b017
1 changed files with 9 additions and 3 deletions

View File

@ -6,15 +6,21 @@ Use ~ps~, ~top~ or ~htop~ to list process:
* ~ps~ reports a snapshot of the current process
: ps aux | less
#+begin_src sh
ps aux | less
#+end_src
* ~top~ display dynamic real-time view of linux process
: top
#+begin_src sh
top
#+end_src
* ~htop~ displays an interactive process viewer
: htop
#+begin_src sh
htop
#+end_src
To kill a process use: