Skip to content

Instantly share code, notes, and snippets.

@ptigas
Last active August 27, 2019 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ptigas/5dadaf379e87158e12e0169cb7a35ebe to your computer and use it in GitHub Desktop.
Save ptigas/5dadaf379e87158e12e0169cb7a35ebe to your computer and use it in GitHub Desktop.
shutdown on inactivity
#!/bin/sh
a=`cut -d ' ' -f 3 /proc/loadavg` set a = load avg.
if [ $(echo "$a > 0.25" | bc) -ne 0 ]; then #If load avg. is less than .25
sudo shutdown
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment