File size: 434 Bytes
2bb44f1
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
# Quick script to check upload progress
cd /Users/pd3rvr/Documents/pubs/THESIS/uploads/multimodal_data_annotator_dataset
echo "=== Upload Progress ==="
if [ -f upload_progress.txt ]; then
    tail -20 upload_progress.txt
else
    echo "Progress file not found yet. Upload may be starting..."
fi
echo ""
echo "=== Process Status ==="
ps aux | grep "upload_one_by_one.py" | grep -v grep || echo "Upload process not running"