Skip to content

Instantly share code, notes, and snippets.

@canimus
Created September 25, 2023 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save canimus/19e9538b738e94bc6a8e48795fa89c3f to your computer and use it in GitHub Desktop.
Save canimus/19e9538b738e94bc6a8e48795fa89c3f to your computer and use it in GitHub Desktop.
Cpu Frequency
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