projects
/
feisty_meow.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
mod fortune
[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
(
9
while true; do
10
sleep 1m
11
date
12
sensors
13
sep
14
done
15
) | tee -a ${TMP}/cpu_temp.log
16
17