Revision 5b92d094fe778f9c70d880c2f886f154daee82e0 authored by Michael K. Franzl on 20 May 2021, 04:45:01 UTC, committed by Michael K. Franzl on 20 May 2021, 04:45:01 UTC
1 parent 92a74ef
Raw File
backgroundStatus.sh
#!/bin/bash

while true
do
	date
	vcgencmd measure_temp
	vcgencmd measure_clock arm
	ps u | grep piDSKY2 | grep --invert-match grep
	uptime
	sleep 10
done
back to top