Hello List,

i have got a large File-List which looks like this:

...snip...
165/165950*.jpg
166/166072*.jpg
...snap....

Now i would like to transfer only those file from that list. The rsync command:

 rsync -avz -F --files-from=/tmp/synclist-small.txt /mnt/ /data/

does not seem to work due to that wildcard.

The command:
  rsync -avz -F --include-from=/tmp/synclist-small.txt /mnt/ /data/
syncs every files, not just the ones from my list.

If i change my file list to:
...snip...
+ 165/165950*
+ 166/166072*
- *
...snap...

then everything gets excluded.


Could someone give me a hint here??

Thanks,
Mario
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Reply via email to