Respuesta :

cat theFile > data.copy

That's a silly way to do it, the copy command is MUCH more appropriate:

cp -p theFile data.copy

The switch can be looked up in the man page:

man cp