#!/bin/sh
# Launch Mikubot
# Restart Mikubot five seconds after halted.
while true; do
lua main.lua
echo 'Mikubot wurde gestoppt. ^C zum beenden.'
sleep 5s
done