rsync --files-from (find + cat)
- by Edward
I try command
rsync -v --files-from=/path/to/list.lst /home/user /path/to/backup
list.lst contains for example
.gnupg/
.pki/
.gnome2/keyrings/
.mozilla/firefox/*.default/bookmarkbackups/
.mozilla/firefox/*.default/bookmarks.html
.mozilla/firefox/.default/.db
files
.mozilla/firefox/.default/.sqlite
and i get error on all strings with * "failed: No such file or directory".
Can anybody help me, or as variant can i combine
find `cat /path/to/list.lst`
with rsync?