0
0
Linux CLIscripting~5 mins

rm -r (remove directories) in Linux CLI - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the command rm -r do in Linux?
The rm -r command removes directories and their contents recursively. It deletes the folder and everything inside it, including subfolders and files.
Click to reveal answer
beginner
Why should you be careful when using rm -r?
Because rm -r deletes everything inside the directory without asking for confirmation by default. This can cause loss of important files if used carelessly.
Click to reveal answer
intermediate
How can you make rm -r ask for confirmation before deleting each file?
You can add the -i option like rm -ri directory_name. This makes the command ask you to confirm before deleting each file or folder.
Click to reveal answer
intermediate
What is the difference between rm -r and rm -rf?
rm -r removes directories recursively and may ask for confirmation if files are write-protected. rm -rf forces removal without any prompts, even for write-protected files.
Click to reveal answer
beginner
Can rm -r delete hidden files and folders?
Yes, rm -r deletes all files and folders inside the directory, including hidden ones (those starting with a dot).
Click to reveal answer
What does the -r option do in the rm command?
ARemoves directories and their contents recursively
BRenames files
CReads file contents
DRestores deleted files
Which command will delete a directory named docs and all its contents without asking for confirmation?
Arm docs
Brm -r docs
Crm -i docs
Drm -rf docs
If you want to be asked before deleting each file inside a directory, which command should you use?
Arm -r directory
Brm -rf directory
Crm -ri directory
Drm directory
Does rm -r delete hidden files inside directories?
ANo, it skips hidden files
BYes, it deletes hidden files too
COnly if you add <code>-h</code>
DOnly if files are not write-protected
What happens if you run rm -r /important_folder by mistake?
AThe folder and all its contents will be deleted
BThe folder will be renamed
CNothing happens, it just lists files
DThe folder is backed up automatically
Explain what the rm -r command does and why it should be used carefully.
Think about deleting a folder with many files inside.
You got /4 concepts.
    Describe how to safely delete a directory using rm -r with confirmation prompts.
    Add an option to make the command interactive.
    You got /4 concepts.