Answers for "how to kill recycling process linux"

0

how to kill recycling process linux

#!/bin/bash
while :
do
    echo "Press [CTRL+C] to stop.."
    for pid in $(ps -ef | awk '/your process name/ {print $2}'); do kill -9 $pid; done  
    
    sleep 1
done
Posted by: Guest on January-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language