ecf3f6aa3f95968645050f2634c304736750b53c
[feisty_meow.git] / scripts / system / cpu_heat_logger.sh
1 #!/bin/bash
2
3 # queries the cpu temperature using the sensors system (must be installed) and writes the
4 # results to an ongoing log file as well as standard output.
5
6 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
7
8 (while true; do sleep 1m ; sensors; sep; done) | tee -a ${TMP}/cpu_temp.log 
9
10