4 lines
93 B
Plaintext
4 lines
93 B
Plaintext
|
#!/bin/sh
|
||
|
T=$(sysctl -a | grep temperature | cut -d ' ' -f2 | cut -d 'C' -f1)
|
||
|
echo $T°C
|