InterviewSolution
Saved Bookmarks
| 1. |
Which Two Commands Can You Use To Delete Directories? |
|
Answer» You can use rmdir or rm -rf to delete a directory. Answer a is incorrect, because the rm command WITHOUT any SPECIFIC flags will not delete a directory, it will only delete FILES. ANSWERS d and e point to a non-existent command. You can use rmdir or rm -rf to delete a directory. Answer a is incorrect, because the rm command without any specific flags will not delete a directory, it will only delete files. Answers d and e point to a non-existent command. |
|