Which command removes every file in the current folder along with all files and nested directories within its subfolders?

Choose the correct answer

Explanation

The command 'rm -r *' recursively deletes all files and directories in the current directory and its subdirectories. Using 'rm *' only deletes files in the current directory without affecting subdirectories.

Which command removes every file in the current fold… — Basic of linux unix | PakQuizHub