Correct typo (i.e., rmdir only removes *empty* directories)

This commit is contained in:
ChristopherBottomsOMRF 2024-09-13 09:25:18 -05:00 committed by GitHub
parent 01184651a2
commit 308b57ce09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
```