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