how to kill proccess with id in linux code example
Example 1: kill a process with pid
kill -9 PID # kill -9 94228
Example 2: how to kill a process in linux
kill -KILL PIDnumber ... for example, kill -KILL 12345
kill -9 PID # kill -9 94228
kill -KILL PIDnumber ... for example, kill -KILL 12345