Using rsync with a list of files / folders
rsync -a --files-from=list.txt /from/something /to/something/else
list.txt contains relative paths in /from/something, so you can sync a selection of a file tree within /from/something to /to/something/else, perfect for partial image sequences with a fancy subfolder structure.

