Copy files using filenames from text files with shell script or bash script



How can I do this????

I have the file "lista.txt", and this file have the next information:
one.txt
two.txt
five.txt
six.txt
-------------------
This files exist in the same directory that "list.txt", I would like to
copy this files to other directory

Using Windows the batch file would be like this: for /f "tokens=*" %i
in (list.txt) do copy "%i" destdir\

How can I do something like that in REDHAT??

Best Regards

.