How/Command to rename a File/Directory – Unix/Linux

Hi all, we already discussed about the move (mv) command and the different switches of mv command. Here, we can use the “mv” command to rename a file or directory under Linux.

Syntax:

mv name newname

Where;
name – is the name of File/Dir
newname – is the new name for selected File/Dir

Example:
Here, I’ve created one folder “CryBit” to illustrate the usage of “mv”.

[root@localhost ~]# mkdir CryBit
---
[root@localhost ~]# ll -d CryBit/
drwxr-xr-x. 2 root root 4096 Mar 14 21:03 CryBit/
---

Renaming CryBit directory to Test.

[root@localhost ~]# mv CryBit/ Test
---
[root@localhost ~]# ll -d CryBit/
ls: cannot access CryBit/: No such file or directory
[root@localhost ~]# ll -d Test/
drwxr-xr-x. 2 root root 4096 Mar 14 21:03 Test/
---

That’s it..!! 🙂

 

Other useful Linux commands:
groupdel, groupmems, groupmod, useradd , usermod , chgrp, chown, ls, head, tail, top, ps, find, crontab, ftp commandstar, rpm, rkhunter, Rsync, grep,  OpenVZ commands, lsof command

Post navigation

Arunlal A

Senior System Developer at Zeta. Linux lover. Traveller. Let's connect! Whether you're a seasoned DevOps pro or just starting your journey, I'm always eager to engage with like-minded individuals. Follow my blog for regular updates, connect on social media, and let's embark on this DevOps adventure together! Happy coding and deploying!

Leave a Reply

Your email address will not be published. Required fields are marked *