blue-merle/files/usr/bin/sim_switch
2022-10-21 10:14:38 +02:00

8 lines
169 B
Plaintext
Executable File

if [ "$1" = "on" ];then
echo "on" > /tmp/sim_change_switch
elif [ "$1" = "off" ];then
echo "off" > /tmp/sim_change_switch
else
echo "off" > /tmp/sim_change_switch
fi