#!/bin/sh
for f in `ls /sys/devices/system/cpu/*/cpufreq/scaling_governor`;do
echo performance > $f
done
