diff options
| -rw-r--r-- | temp_throttle.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/temp_throttle.sh b/temp_throttle.sh index e282bbf..3263b08 100644 --- a/temp_throttle.sh +++ b/temp_throttle.sh @@ -1,8 +1,16 @@ #!/bin/bash -# temp_throttle.sh max_temp +# Authors: Sepero (sepero 111 @ gmail . com) + +# Links +# http://github.com/Sepero/temp-throttle/ +# http://seperohacker.blogspot.com/2012/10/linux-keep-your-cpu-cool-with-frequency.html + +# Usage: temp_throttle.sh max_temp # USE CELSIUS TEMPERATURES. +# License: GNU GPL 2.0 + if [ $# -ne 1 ]; then # If temperature wasn't given, then print a message and exit. echo "Please supply a maximum desired temperature in Celsius." 1>&2 |
