Answers for "kill inactive processes linux"

8

kill all processes by name linux

ps -ef | grep 'myProcessName' | grep -v grep | awk '{print $2}' | xargs -r kill -9
Posted by: Guest on May-13-2021
2

kill process linux

#terminate process with SIGKILL signal by process id
kill -9 pid
Posted by: Guest on July-30-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language