On Wed, Oct 23, 2024 at 22:46:09 +0200, Hans wrote: > #:/bin/bash > > cpufreq-set -c 0 -u 800MHz > cpufreq-set -c 1 -u 800MHz > cpufreq-set -c 2 -u 800MHz > cpufreq-set -c 3 -u 800MHz
For the record, that should be #!/bin/bash instead of #:/bin/bash (or you could use #!/bin/sh in this case, since you're not actually using any bash extensions).