Commit version 1.2.20 - Now released as open source.

This commit is contained in:
2025-02-10 13:28:52 +02:00
parent 5500a91184
commit cd5cbd48ca
4 changed files with 266 additions and 0 deletions

14
status.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
while true
do
clear
if [[ -f status.tmp ]]
then
cat status.tmp
else
echo "Done!"
exit
fi
sleep 10s
done