# Processes

* Search a process if its running or not
  * `ps -ef | grep GIVE_YOUR__PROCESS_NAME`
* To check cup/memory usage by each process
  * htop or top     [More](http://www.deonsworld.co.za/2012/12/20/understanding-and-using-htop-monitor-system-resources/)
* kill
  * `sudo kill -9 YOUR__PROCESS_ID`

**Exercise:**

* Write a command to find a specific running process and kill it.
