Manual page for a command
$ man <cmd>
Example:
$ man ps
View running processes
$ ps aux
Filter processes
$ ps aux | grep olga
Kill a process
$ kill <PID>
If process is stubborn
$ kill -9 <PID>
Manual page for a command
$ man <cmd>
Example:
$ man ps
View running processes
$ ps aux
Filter processes
$ ps aux | grep olga
Kill a process
$ kill <PID>
If process is stubborn
$ kill -9 <PID>