pvesh get /nodes/$(hostname)/tasks --type vzdump --limit 500 --output-format json | sed 's/},/}\
/g' | while read -r line; do start=$(echo "$line" | grep -o '"starttime":[0-9]*' | grep -o '[0-9]*'); [ -z "$start" ] && continue; now=$(date +%s); if [ $((now - start)) -lt 86400 ]; then...