Skip to content

Instantly share code, notes, and snippets.

@tumichnix
Last active January 28, 2021 08:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tumichnix/cf04679ec67f1ec6e99ff175d3a7695e to your computer and use it in GitHub Desktop.
Save tumichnix/cf04679ec67f1ec6e99ff175d3a7695e to your computer and use it in GitHub Desktop.
CPU Temp
#!/bin/bash
while true; do
sleep 1
DATE=$(date)
TEMP=$(sensors | awk '/Core 0/ {sub("°C", "", $3); print($3)}')
echo $DATE $TEMP >> temp.log
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment