mirror of
https://github.com/srlabs/blue-merle.git
synced 2024-10-01 00:55:39 -04:00
8 lines
169 B
Plaintext
Executable File
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
|