linux kill process during process code example
Example 1: how to kill a process with linux
ps ux #list the running proccess
kill -9 <PID>
Example 2: kill process linux
#terminate process with SIGKILL signal by process id
kill -9 pid
ps ux #list the running proccess
kill -9 <PID>
#terminate process with SIGKILL signal by process id
kill -9 pid