cp - copy files and directories.
Format: cp [options] source destination
Eg: cp file1 /data/
Here it copies the file1 from the present working directory to the directory /data
Eg2: cp –a /data1 /data2/
Here it copies the directory data1 into the directory data2 recursively
