This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
bare-dotfiles/bin/cpu-freqs.sh

6 lines
133 B
Bash
Raw Normal View History

2018-07-17 09:48:02 -04:00
#!/bin/bash
for i in 0 1 2 3 4 5 6 7 ; do
echo -n "cpu${i} " && cat /sys/devices/system/cpu/cpu${i}/cpufreq/scaling_cur_freq
done