From 308b57ce098f59c85e9167ff402a6ef51be3a7c4 Mon Sep 17 00:00:00 2001 From: ChristopherBottomsOMRF <161774596+ChristopherBottomsOMRF@users.noreply.github.com> Date: Fri, 13 Sep 2024 09:25:18 -0500 Subject: [PATCH] Correct typo (i.e., rmdir only removes *empty* directories) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 919fa38..b91c775 100644 --- a/README.md +++ b/README.md @@ -3256,7 +3256,7 @@ rsync -avz username@hostname:/foo /bar # Copy remote directory t ## Deleting Directories ```bash -rmdir foo # Delete non-empty directory +rmdir foo # Delete empty directory rm -r|--recursive foo # Delete directory including contents rm -r|--recursive -f|--force foo # Delete directory including contents, ignore nonexistent files and never prompt ```