Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I have got the directory /home/user/foo and I want to rename it to /home/user/bar. How can I do this in a terminal?

share|improve this question

2 Answers

up vote 27 down vote accepted
mv /home/user/foo /home/user/bar
share|improve this answer
2  
Cool article. That's exactly the point. – Rafał Cieślak Aug 9 '11 at 9:02

mv can do two jobs.

  1. It can move files or directories
  2. It can rename files or directories

To just rename a file or directory type this in Terminal:

mv old_name new_name 

with space between the old and new names.

To move a file or directory type this in Terminal.

mv file_name ~/Desktop 

it will move the file to the desktop.

If is a directory you should add -R before the directory name:

mv -R directory_name ~/Desktop
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.