답변:
시험 rsync -av ~/foo/ user@remote.com:/var/www/bar/
mv
또는에 비해 이상 cp
합니다.
/
디렉토리 이름 뒤의 후행 입니다.
간단 해,
rsync /var/www/ /home/var
-/ var / www /의 내용을 복사하지만 www 폴더 자체 는 복사 하지 않습니다 .
rsync /var/www /home/var
- 모든 내용과 함께 폴더 www 를 복사합니다 .
"/"가 차이를 만듭니다.
rsync와 관련된 것이 아니라 GNU / Linux 명령을 사용하는 방법에 대한 예제를 찾을 때 명시적인 예제를 표시하는 "eg"를 사용할 수 있습니다. 예를 들어 여기에서 설치 방법에 대한 지침이 제공됩니다. https://github.com/srsudar/eg
결과 eg rsync
는 다음과 같습니다.
# rsync
copy the folder source_dir and its content into destination_dir
rsync -av source_dir destination_dir
copy the contents of source_dir (trailing slash) into destination_dir
rsync -av source_dir/ destination_dir