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?✗ Incorrect
-r means recursive removal of directories and their contents.Which command will delete a directory named
docs and all its contents without asking for confirmation?✗ Incorrect
rm -rf docs forces recursive deletion without prompts.If you want to be asked before deleting each file inside a directory, which command should you use?
✗ Incorrect
-i option makes rm interactive, asking for confirmation.Does
rm -r delete hidden files inside directories?✗ Incorrect
rm -r deletes all files including hidden ones.What happens if you run
rm -r /important_folder by mistake?✗ Incorrect
The command deletes the folder and everything inside it.
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.