#! /bin/bash # check raspi 4 temperature 10 times min=1 max=10 while ((min <= max)) do printf "${min}. " && vcgencmd measure_temp ((min++)) done