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.
我开始在centos上学习rsync,我有一个问题。我有两个主机,我想使用 rsync 将视频从主机 1 更新到主机 2,但只更新指定格式的示例 MP4、FLV。在 host1 上有许多不同的格式。请帮助我!谢谢!
您可以使用--exclude/--include构造,其中包含所需的扩展名但排除其他所有内容。
--exclude
--include
rsync -av --include='*.flv' --include='*.mp4' --exclude='*' /source /destination