Add Linux command to get directory size

This commit is contained in:
James Skemp 2023-01-15 14:08:39 -06:00
parent f2da949cc0
commit 1ddcfb0153
1 changed files with 3 additions and 0 deletions

View File

@ -68,6 +68,9 @@ ls ~ | wc -l
# List block devices. Helps with seeing partition information.
sudo lsblk -f -m
# View the total size of a directory.
sudo du -sh /path/to/directory
```
### Navigation