List of commands that allow us to manipulate files
cp [OPTION] "source file name" "destination file name"
cp [OPTION] "source dir" "destination dir name"
For detailes about option for cp type this line at the bash line
cp man
or
cp info
Syntax
cp "file name" "new location"
cp /home/wannabedba/documents/"file name" /home/"new loaction"
cp file1 file2
cp file1 dir1
cp -R dir1 dir2
mv [option] oldname newname
[-f] mv will move the file(s) without prompting even if it is writing over an existing target. Note that this is the default if the standard input is not a terminal.
[-i] Prompts before overwriting another file.
[oldname] The oldname of the file renaming.
[newname] The newname of the file renaming.
[filename] The name of the file you want to move directory - The directory of were you want the file to go.
Example
mv myfile newdir/
mv file.txt wannabedba.txt
mv file1.txt file2.txt file3.txt directory1