Skip to content

Instantly share code, notes, and snippets.

@nkirnos
Created March 31, 2020 06:48
Show Gist options
  • Select an option

  • Save nkirnos/dd5fb4711f655b1a0c15199f24d5ae2d to your computer and use it in GitHub Desktop.

Select an option

Save nkirnos/dd5fb4711f655b1a0c15199f24d5ae2d to your computer and use it in GitHub Desktop.
power off when low loadaverage
#/bin/bash
load=$(cat /proc/loadavg | awk '{ print $2}')
threshold=0.3
echo $load
check=$(echo "$threshold > $load" | /usr/bin/bc)
if test "$check" = "1"; then
sudo /sbin/shutdown now
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment