0
0
Linux CLIscripting~5 mins

mv (move and rename) in Linux CLI - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the mv command do in Linux?
The mv command moves files or directories from one location to another. It can also rename files or directories by moving them to the same location with a new name.
Click to reveal answer
beginner
How do you rename a file using mv?
To rename a file, use mv oldname newname. This moves the file oldname to the same directory but with the new name newname.
Click to reveal answer
intermediate
What happens if you use mv to move a file to a directory that already has a file with the same name?
The existing file in the destination directory will be overwritten without warning, replacing it with the moved file.
Click to reveal answer
beginner
How can you move multiple files to a directory using mv?
You list all the files you want to move followed by the destination directory. For example: mv file1.txt file2.txt /path/to/destination/.
Click to reveal answer
intermediate
What option can you use with mv to ask before overwriting files?
Use the -i option (interactive). It prompts you to confirm before overwriting any existing files.
Click to reveal answer
What does the command mv file1.txt file2.txt do if both files are in the same directory?
ACopies file1.txt to file2.txt
BRenames file1.txt to file2.txt
CDeletes file2.txt
DMoves file2.txt to file1.txt
Which option with mv asks for confirmation before overwriting a file?
A-v
B-f
C-i
D-r
What happens if you move a file to a directory where a file with the same name exists and you do not use any options?
AThe move fails
BThe file is renamed automatically
CThe command asks for confirmation
DThe existing file is overwritten without warning
How do you move multiple files to a directory?
Amv file1 file2 /directory
Bmv /directory/file1 /directory/file2
Cmv file1 /directory file2
Dmv /directory file1 file2
Which command renames a directory named 'oldfolder' to 'newfolder'?
Amv oldfolder newfolder
Bmv newfolder oldfolder
Crename oldfolder newfolder
Dcp oldfolder newfolder
Explain how to rename a file and move a file to a different directory using the mv command.
Think about moving a file within the same folder vs moving it to another folder.
You got /3 concepts.
    Describe what happens when you move a file to a directory where a file with the same name already exists. How can you avoid accidental overwrites?
    Consider safety options in commands.
    You got /3 concepts.