ich bastel mir gerade ein Skript. Hier der kleine Auszug:
Code: Alles auswählen
echo Antwort:;
read antwort2
if [ "$antwort2" != "default" ] || [ "$antwort2" != "auto" ] || [ "$antwort2" != "high" ] || [ "$antwort2" != "mid" ] || [ "$antwort2" != "low" ]
then echo "Sie haben eine unzulässige Option gewählt. (Tipfehler?)";
sleep 2
exit 1;
else echo "$antwort2" > /sys/class/drm/card0/device/power_profile;
-> http://openbook.galileo-press.de/shell_ ... 271F04F1A6
Da gibt es ja mehrere Möglichkeiten. Was ist nun richtig? Und wie geht es richtig?