There are so many ways to do it. As
bigrigdriver suggested, it depends on how you distinguish the files you want to copy from the ones you don't.
If it's only 10 files out of 100, you might be better off using a file manager with a GUI such as Nautilus on Gnome or Konqueror/Dolphin on KDE.
If you want to use the command line, then suppose, for example, that you want to copy all of the files that were modified more than one day ago ...
Code:
find -mtime +1 -exec -print cp {} \;
I'd break down that command for you, but then you wouldn't have any reason to type
man find
--
Ghodmode