Files
SIA/scripts/restart.sh
2025-03-02 22:01:24 +01:00

11 lines
205 B
Bash

#!/bin/bash
while true; do
sia
if [ $? -eq 42 ]; then
echo "SIA exited with code 42. Restarting."
else
echo "SIA exited with code $?. Not restarting."
break
fi
done