linux-server-tools/imapsync-batch-run/status.sh

15 lines
129 B
Bash
Raw Normal View History

2023-11-21 11:38:39 +02:00
#!/bin/bash
while true
do
clear
if [[ -f status.tmp ]]
then
cat status.tmp
else
echo "Done!"
exit
fi
sleep 10s
done