Compare commits
3 Commits
afeed22a4d
...
0.3
| Author | SHA1 | Date | |
|---|---|---|---|
| fb803c13f0 | |||
| b8c8a18db3 | |||
| 87540bf04b |
26
bin/measure_temp.sh
Executable file
26
bin/measure_temp.sh
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
START=$(date +%s)
|
||||
|
||||
usage() {
|
||||
local name=${0##*/}
|
||||
|
||||
cat <<-EOF
|
||||
Usage: ${name} [-h || --help]
|
||||
|
||||
measures the pu core temperature an echoes with a squenence number to stdout.
|
||||
EOF
|
||||
}
|
||||
|
||||
if [[ "$1" == "-h" || "$1" == "--help" ]]; then
|
||||
usage
|
||||
exit 0
|
||||
fi
|
||||
|
||||
while true; do
|
||||
NOW=$(date +%s)
|
||||
TS=$((NOW - START))
|
||||
TEMP=$(vcgencmd measure_temp | sed 's/[^0-9.]//g')
|
||||
echo "$TS $TEMP"
|
||||
sleep 1
|
||||
done
|
||||
|
||||
5
bin/run-cpu-stress.sh
Executable file
5
bin/run-cpu-stress.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
temp_data.sh > temp.log &
|
||||
TPID=$!
|
||||
fio fio/fio_cpu
|
||||
kill $TPID
|
||||
|
||||
Reference in New Issue
Block a user