5 lines
132 B
Bash
Executable File
5 lines
132 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2015 Alexander Tsepkov
|
|
|
|
sensors | awk '/^Core/ {t=substr($3,2,4);if (t>max) max=t} END {print max}'
|