mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in /sys/devices/system/cpu/cpu[0-9]
|
|
do
|
|
echo performance > $i/cpufreq/scaling_governor
|
|
done
|
|
|