It depends on what you’re trying to copy/move.
You might need a single cp, or mv command.
Or you might need several.
Or you may need to use a different command altogether, like find (to find files to move/copy) and use finds -exec option to specify an action to perform on the found files/directories.
Or it might require a full blown script.
The cp and mv commands can take a list of several items to copy/move. So if you have several items going to one destination, that should be a one-liner.
If you have different items going to different directories, that could require several commands.
Also, you may be able to take advantage of globbing, or pattern matching using regular expressions to identify the files you want to copy/move.
But without some more specific information, it’s difficult to advise you on what to do next.