Last active
October 24, 2018 12:27
-
-
Save retrography/0b3f572f551e5960a56b91fffe775c58 to your computer and use it in GitHub Desktop.
Assesses the most CPU-intensive (keeping at least one core busy at 100%) processes repetitively over a period of one second, and kills the process that comes on top.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
declare -a pids | |
for i in {1..10} | |
do | |
toptask=$(ps -eo pcpu=,pid= | sed 's/^ *//' | tr -s ' ' '\t' | sort -grk1 | head -1) | |
cpu=$(echo $toptask | tr -s ' ' '\t' | cut -f1 | cut -d. -f1) | |
pid=$(echo $toptask | tr -s ' ' '\t' | cut -f2) | |
if (( cpu > 100 )); then | |
pids+=($pid) | |
fi | |
sleep 0.1 | |
done | |
if [ ! -z ${pids[*]} ] | |
then | |
pid=$(echo ${pids[*]} | tr ' ' '\n' | sort | uniq -c | sed 's/^ *//' | tr -s ' ' '\t' | sort -grk1 | head -n1 | cut -f2) | |
kill -9 $pid | |
echo "Killed $pid. That was a rogue one!" | |
else | |
echo "No rogue process. Nothing done!" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'd add a check to make sure it doesn't kill anything with a cpu usage less than a certain threshold. That way, if you're computer is frozen but not because of high CPU usage, it doesn't kill innocent processes.