mv Command in Linux
How to Move Files and Directories Using the mv Command in Linux ππ
What is the mv Command? π€
The mv
command in Linux is used to move or rename files and directories. Itβs an essential command for file management and organization.
Basic Syntax π
The general syntax of the mv
command is:
Moving a Single File π
To move a file from one location to another, use:
This moves file1.txt
to the Documents
directory.
Renaming a File π·οΈ
The mv
command can also rename a file:
This renames oldname.txt
to newname.txt
.
Moving Multiple Files ππ
To move multiple files to a directory:
This moves file1.txt
and file2.txt
into Documents
.
Moving Directories π
To move an entire directory:
This moves the myfolder
directory to Backup
.
Overwriting Without Confirmation β οΈ
By default, mv
will overwrite files without warning. Use the -i
(interactive) option to confirm:
This asks before replacing an existing file.
Forcing a Move π οΈ
Use the -f
option to force a move without prompts:
Using mv with Wildcards π
Wildcards can be used to move multiple files matching a pattern:
This moves all .txt
files to Documents
.
Final Thoughts π
The mv
command is a must-know tool for organizing files in Linux. Whether you're renaming files, tidying up directories, or managing system files, mastering mv
will make your workflow smoother! π
Want more Linux tips? Check out my blog and explore My Tool for cool resources! π οΈ