Created
September 25, 2023 10:18
-
-
Save canimus/19e9538b738e94bc6a8e48795fa89c3f to your computer and use it in GitHub Desktop.
Cpu Frequency
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat /proc/cpuinfo | grep MHz | cut -d":" -f2 | tr -d " " | tr "\n" "," | sed 's/[^0-9\.,]//g' | rev | cut -c2- | rev | (echo -n "cpu," && cat) | termgraph |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment