9 lines
57 B
Bash
Executable File
9 lines
57 B
Bash
Executable File
#!/bin/bash
|
|
|
|
while [ 1=1 ]
|
|
do
|
|
clear
|
|
sensors
|
|
sleep 1
|
|
done
|