File size: 228 Bytes
3132f2e
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
cd /workspace/mindi-backup

while true; do
  for f in backups/*.tar.gz; do
    if [ ! -f "$f.uploaded" ]; then
      echo "Uploading $f"
      hf upload mindi-backups "$f"
      touch "$f.uploaded"
    fi
  done
  sleep 300
done