Risposte:
Questo dovrebbe farti iniziare in modo solido
rsync -RDa0P \
--files-from=<(find sourcedir/./ -mtime -7 -print0) \
. user@B:targetdir/
Copia i nodi del dispositivo, le autorizzazioni, i timestamp. Sono abbastanza sicuro che l'opzione -H non sarà accurata con --files-from
rsync -avn --files-from=<(ssh user@A 'find /path/on/A/ -mtime -7 -type f -exec basename {} \;') user@A:/path/on/A/ user@B:targetdir
basename
significa nel tuo comando? Puoi spiegare per favore?
Ho scritto questo script in base al commento di Cybertoast per la sincronizzazione da un server remoto a locale.
Puoi chiamare lo script con ./script.sh 3
o ./script.sh 3 dry
per una corsa a secco.
#!/bin/bash
TIME=$1
DRYRUN=$2
if [[ -z $TIME ]]; then
echo "Error: no time argument."
echo "Please enter the number of days to sync."
exit 1
fi
if [[ $DRYRUN = "dry" ]]; then
DRYRUNCMD="--dry-run"
echo "Dry run initiated..."
fi
rsync -avz $DRYRUNCMD --files-from=<(ssh \
user@remote "find path/to/data/ \
-mtime -$TIME ! -name *.mkv -type f \
-exec ls $(basename {}) \;") \
user@remote:. .