Skip to content

Instantly share code, notes, and snippets.

@bsara
Created October 30, 2014 20:48
Show Gist options
  • Save bsara/126e327a015893d267ca to your computer and use it in GitHub Desktop.
Save bsara/126e327a015893d267ca to your computer and use it in GitHub Desktop.
Raspberry Pi Raspbian CPU Temperature Monitoring Script
#!/bin/bash
echo "Press [ctrl+c] to end monitoring"
echo ""
while true
do
vcgencmd measure_temp
sleep 3s
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment