QuestionQ123
Infrastructure and AutomationAfter a project has been migrated to a new codebase, the old_project directory must be removed. The directory contains multiple read-only files and must be deleted recursively without a confirmation prompt. Which Bash command must be used?
- A rmdir -p old_project
- B rm -rf old_project
- C rm -r old_project
- D rmdir old_project
Community Discussion