Yanıtlar:
Bu sizi sağlam bir yoldan başlatmalı
rsync -RDa0P \
--files-from=<(find sourcedir/./ -mtime -7 -print0) \
. user@B:targetdir/
Bu, aygıt düğümlerini, izinleri, zaman damgalarını kopyalar. -H seçeneğinin - file-from ile doğru olmayacağından eminim.
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
geliyor? Açıklayabilir misiniz lütfen?
Bu betiği, cybertoast'ın uzak bir sunucudan yerel sisteme eşitleme yorumuna dayanarak yazdım.
Komut dosyasını kuru çalışma için ./script.sh 3
veya ile ./script.sh 3 dry
çalıştırabilirsiniz.
#!/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:. .