mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
8 lines
122 B
Bash
8 lines
122 B
Bash
#! /usr/bin/env sh
|
|
|
|
for i in /sys/devices/system/cpu/cpu[0-9]
|
|
do
|
|
echo performance > $i/cpufreq/scaling_governor
|
|
done
|
|
|