2020-10-29 23:27:00 +01:00
|
|
|
#!/bin/sh
|
|
|
|
if [ -z $1 ] || [ -z $2 ] || [ -z $3 ]; then echo "usage: automat server username password"; exit 1; fi
|
2020-11-14 04:11:08 +01:00
|
|
|
pwf=~/.mtpw
|
2020-10-29 23:27:00 +01:00
|
|
|
srv=$1
|
|
|
|
usr=$2
|
|
|
|
pas=$3
|
2020-11-14 15:54:35 +01:00
|
|
|
logfile=$HOME/.wslog
|
2020-10-29 23:27:00 +01:00
|
|
|
mtpath=$(dirname $0)
|
2020-11-14 04:11:08 +01:00
|
|
|
if [ -f $pwf ]; then pas=$(cat $pwf); fi
|
2020-10-29 23:27:00 +01:00
|
|
|
while true; do
|
2020-11-14 15:54:35 +01:00
|
|
|
$mtpath/bin/minetest --go --address $srv --name $usr --password $pas --logfile $logfile --color never
|
2020-10-29 23:27:00 +01:00
|
|
|
done
|