Skip to content

Instantly share code, notes, and snippets.

@andrewpmiller
Created August 10, 2014 13:30
Show Gist options
  • Save andrewpmiller/1395248df22726e6a22a to your computer and use it in GitHub Desktop.
Save andrewpmiller/1395248df22726e6a22a to your computer and use it in GitHub Desktop.
CLI command to show board temperature in Fahrenheit
cat /sys/class/thermal/thermal_zone0/temp | awk '{ $1 = (((9/5)*$1)+32)/1000 } 1'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment