How do I use mv command to rename or move file under UNIX operating systems?
You can move and rename files by using the mv command under UNIX.
Syntax
mv oldname newname mv filename /dest/di
Task: Rename A File
Type the mv command to rename foo.txt to bar.txt:
mv foo.txt bar.txt ls
Task: Rename A Directory
Type the following command to rename a directory in the current directory:
mv oldDir newDir mv letters letters.old
Task: Move Directory
Use the following sytax:
mv sourceDir destDir
In this example, move httpd directory and its contents to a new location /webroot in the file system so that a subdirectory named httpd resides in directory /webroot:
mv httpd /webroot cd /webroot ls -l
mv Options
The following options are supported:
- -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 : mv will prompt for confirmation whenever the move would overwrite an existing target. An affirmative answer means that the move should proceed. Any other answer prevents mv from overwriting the target.
Overwrite an existing file, enter:
mv -f file /dest mv -i /etc/passwd /backup
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- My 10 UNIX Command Line Mistakes
- Linux: 20 Iptables Examples For New SysAdmins

- 25 PHP Security Best Practices For Sys Admins
- The Novice Guide To Buying A Linux Laptop
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
Facebook it - Tweet it - Print it -


{ 3 comments… read them below or add one }
How can I change the name of the company in a Unix system?
Plz give an example for mv -t command in unix
plz give a program to implement move command