#!/bin/bash set -uo pipefail BASE=/home/rafa/joomla-migration/mirror-antiguo RUN=$(cat "$BASE/CURRENT_RUN") D=$BASE/runs/$RUN cd "$D" echo "=== ficheros marcados por el escaneo (ยง4.3.2) ===" while read -r f; do echo "----- $f" du -h "$f" 2>/dev/null | cut -f1 head -c 200 "$f" | tr -d '\0' echo; echo done < "$D/scan-suspicious.txt"