mirror of
https://github.com/srlabs/blue-merle.git
synced 2025-07-12 09:59:23 -04:00
7 lines
169 B
Text
Executable file
7 lines
169 B
Text
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
|