Should work, hopefully...

This commit is contained in:
mathias 2019-08-06 19:23:07 +03:00
parent 5de133fe7c
commit 099492318b

View file

@ -36,7 +36,7 @@ tmux new -d -s alivecheck "set -x; while true; do
sleep 12
DATE_PARSE=$(tail -1 latest.log | grep -oP '(?<=\[).*?(?=\])' | head -1 | date -f - +%s)
echo $DATE_PARSE
DATE=${DATE_PARSE:-9999999999}
DATE=$${DATE_PARSE:=$(date +%s)}
echo $DATE
if [ "$(env printf '\xFE' | nc -w 5 localhost 25565 | wc -m)" -eq 1 ] ||
[ "$(( $(date +%s) - $DATE ))" -gt 180 ]; then