mirror of
https://bitbucket.org/skobkin/dotfiles.git
synced 2024-11-22 12:56:04 +00:00
6 lines
246 B
Bash
Executable file
6 lines
246 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Core i7-4820k
|
|
#sensors | fgrep -i "core " | tr "\n" " " | sed -e "s/Core\ [0-9]\:[ ]\++//g;s/ ([^)]*)//g;s/ $//"
|
|
# Threadripper 1950X (via motherboard sensors, not die)
|
|
sensors | fgrep 'Tdie:' | awk '{print $2}' | head -n1
|