3 lines
111 B
Bash
Executable File
3 lines
111 B
Bash
Executable File
#/bin/bash
|
|
for cpu in /sys/devices/system/cpu/cpu? ; do echo performance > $cpu/cpufreq/scaling_governor; done
|