Skip to content

Instantly share code, notes, and snippets.

@gabeio
Created October 25, 2016 01:55
Show Gist options
  • Select an option

  • Save gabeio/a70e19f3b4d7fe97e9cd6a4cf0bfbb71 to your computer and use it in GitHub Desktop.

Select an option

Save gabeio/a70e19f3b4d7fe97e9cd6a4cf0bfbb71 to your computer and use it in GitHub Desktop.
pauser
#!/bin/bash
# A small script to keep a laptop cool while running something like an install for a long time
while true; do
kill -CONT $1
sleep 1
kill -STOP $1
sleep 10
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment