Answers:
尝试 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