Dateien nach "scripts" hochladen

This commit is contained in:
2024-04-19 09:32:24 +02:00
parent 6081948728
commit a251a00e5a

14
scripts/start-tail.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
tail -n 100 -f ${DATA_DIR}/Steam/logs/steamcmd.log
sleep 5
killpid="$(pidof gotty)"
while true
do
if [ -z "$killpid" ]; then
kill $(pidof tail)
exit 0
fi
tail --pid=$killpid -f /dev/null
kill $(pidof tail)
exit 0
done