Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有深层子文件夹的巨大文件夹结构,在这些文件夹中,有具有不同扩展名 ( .txt, .pdf, ...) 的文件。
.txt, .pdf, ...
我想要做的是复制整个文件夹结构以及只有.pdf扩展名的文件。
.pdf
我正在使用scp,但没有选项可以指定要复制的扩展名。
scp
我尝试rsync使用排除和包含选项,但它也没有工作,并且 shell 窗口冻结
rsync
PS:我在MacOSX山狮上,我正在尝试从Fedora16复制
MacOSX
Fedora
做这个的最好方式是什么 ?
rsync -rav -e ssh --include '*/' --include='*.pdf' --exclude='*' server:path localpathpath