After a project is migrated to a new codebase, the “old_project” directory must be deleted. This directory has multiple readonly flies, and it must be deleted recursively without prompting for confirmation. Which Bash command must be used?

By | November 20, 2022

  • A. rmdir -p old_project
  • B. rm -rf old_project
  • C. rm -r old_project
  • D. rmdir old_project
Answer: Option B.
Explanation: 

No answer description available for this question.

The post After a project is migrated to a new codebase, the “old_project” directory must be deleted. This directory has multiple readonly flies, and it must be deleted recursively without prompting for confirmation. Which Bash command must be used? appeared first on Majanto.