Skip to content

Instantly share code, notes, and snippets.

@retrography
Last active October 24, 2018 12:27
Show Gist options
  • Save retrography/0b3f572f551e5960a56b91fffe775c58 to your computer and use it in GitHub Desktop.
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.
#!/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
@mehraan
Copy link

mehraan commented Jun 26, 2017

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.

@retrography
Copy link
Author

@mehraan Check it out!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment