rsync –files-from或–include-from

前端之家收集整理的这篇文章主要介绍了rsync –files-from或–include-from前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试过这个命令:
rsync -v --include-from=/path/to/list.lst /home/user /path/to/backup

list.lst包含例如

.gnupg/

.pki/

.gnome2/keyrings/

.mozilla/firefox/*.default/bookmarkbackups/

.mozilla/firefox/*.default/bookmarks.html

.mozilla/firefox/*.default/*.db

.mozilla/firefox/*.default/*.sqlite

我得到所有字符串错误

Failed: No such file or directory

当我使用–files-from时,我也会收到错误.任何人都可以帮我使用通配符吗?

解决方法

您可以使用包含过滤器和–include-from: Complex includes/excludes with rsync

或者你可以使用find命令:

cd
rsync -v --files-from <(find gnupg/ .pki/ .gnome2/keyrings/ \
  .mozilla/firefox/*.default/bookmarkbackups/ \
  .mozilla/firefox/*.default/bookmarks.html .mozilla/firefox/*.default/*.db \
  .mozilla/firefox/*.default/*.sqlite) \
 ~ /path/to/backup
原文链接:https://www.f2er.com/linux/398162.html

猜你在找的Linux相关文章