How do I transfer multiple files with a common suffix and prefix using an offset?

listed in answer

How do I transfer multiple files with a common suffix and prefix using an offset?
0 votes, 0.00 avg. rating (0% score)

ANSWER:

You can generate the file list with something like this:

find . -name 'sequence_[0-9]*.jpg' | sort -n | sed -n '1~100p'

by Thor from http://unix.stackexchange.com/questions/37358