Tag: frequency
-
Updated Bash CPU Meter
In August, I did a post on a pretty simple bash cpu meter. This one is still Intel-only, but is records the range of frequencies used during a report. #!/bin/bash COLWID=17 MAXTURBO=4200 function find_lines { local i=0 local j=0 while read line; do if [[ $line =~ cpu\ MHz ]]; then cpu[i]=$j ((i++)) fi ((j++))…