blue-merle/files/usr/bin/sim_switch

8 lines
169 B
Plaintext
Raw Permalink Normal View History

2022-10-10 14:30:43 +00:00
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