This is a command I frequently use when i am working in the UNIX shell:

To move file.html file from /home/john to /home/sandy:
CODE:
mv /home/john/file.html /home/sandy/index.html


To rename old_file.html to new_file.html
CODE:
mv old_file.html new_file.html