Added imapsync-batch-run

This commit is contained in:
Ze'ev Schurmann
2023-11-21 11:38:39 +02:00
parent 99e779b0c5
commit 6d6eda8e57
3 changed files with 64 additions and 0 deletions

14
imapsync-batch-run/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