답변:
변수가 server
있고 dir
정의되어 있다고 가정하면 할 수 있습니다
$ dir="~"
$ server="user@server.com"
$ scp $server:$dir/$(ssh $server 'ls -t $dir | head -1') .
먼저 최신 파일을 찾은 다음 복사하십시오.
참고 : 나는 바보를 확인하지 않았습니다 (예 : 최신 항목이 폴더 임)
scp
가져 오기의 그것은 처음부터 복사를 다시 시작해야합니다 중단, rsync
중지 된 부분부터 다시 시작할 수 있습니다.
ssh
.
/*
두 번째 $ dir의 끝에 a 를 추가 함 ).scp $server:$(ssh $server 'ls -t $dir/* | head -1') .
scp
소스에서 대상으로 파일을 맹목적으로 복사한다는 의미에서 바보입니다. 파일을 복사하는 데보다 지능적인 것을 원한다면과 같은 도구를 사용해야합니다 rsync
.
$ rsync -avz root@rimmer.sk:'$(find /home/rimmer/backups/ -ctime -1)' /home/rimmer/backups/
마지막 날 rimmer.sk의 backups 디렉토리 (-ctime -1)에서 누락되었거나 변경된 파일 만 로컬 백업 디렉토리로 복사합니다.
-ctime n
File's status was last changed n*24 hours ago. See the comments for
-atime to understand how rounding affects the interpretation of file
status change times.
파티에 약간 늦었지만 아마도 ssh 및 rsync가있는 솔루션은 다음과 같이 작동합니다.
source_host="yourhost.com"
source_dir="/a/dir/on/yourhost.com/"
target_dir="/the/dir/where/last_backup/will/be/placed"
last_backup=$(ssh user@${source_host} "ls -t ${source_dir} | head -1")
if [ "${last_backup}" == "" ]; then
echo "ERROR: didn't find a backup, cannot continue!"
else
echo "the last backup is: ${last_backup}"
rsync -avzh user@${source_host}:${source_dir}/${last_backup} ${target_dir}
fi
scp -r
합니다.