1
0
mirror of https://github.com/srlabs/blue-merle.git synced 2025-01-11 15:19:27 -05:00
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