Complete the command to remove a directory named 'folder' and all its contents.
rm [1] folderThe -r option tells rm to remove directories and their contents recursively.
Complete the command to force remove a directory named 'temp' without prompts.
rm [1] tempThe -rf option combines recursive removal and force, so it deletes directories without asking.
Fix the error in the command to remove directory 'docs' and its contents.
rm -r [1]The directory name should be given without dashes. Just use docs.
Fill both blanks to remove directory 'cache' recursively and forcefully.
rm [1] [2]
The -rf option removes directories recursively and forcefully. Then specify the directory name.
Fill all three blanks to remove directories 'build' and 'dist' recursively and forcefully.
rm [1] [2] [3]
Use -rf to remove directories recursively and forcefully, then list directory names.