This Post Has Been Viewed 3117 Times Since Fri Feb 29, 2008 12:01 pm Posted By unix with 0 replies
POST# 916
Posted On: Fri Feb 29, 2008 12:01 pm
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