usage: cp srcfile destfile

cp copies all data from file srcfile to a new file with the name destfile. cp works byte-wise without buffering and is therefore quite slow on larger files. You may try "cat srcfile!buf!tee destfile" instead for larger files.