如何SCP整个目录但排除目录?

And*_*ion 1 centos scp

我想将整个目录 SCP 到我的新服务器,但排除 /storage 中的 thumbs/ 目录。

我想 scp(以及其中的所有内容和所有目录):/storage

但排除:/storage/thumbs

谢谢你

Joo*_*ing 8

使用 rsync: rsync -av --exclude thumbs /storage dest

Rsync 使用安全复制。

  • 实际上,它通过 SSH 进行管道传输。但最终结果是一样的。 (2认同)