1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 18:44:56 +02:00
tldr/pages/common/du.md
Marco Bonelli 2599a6de48 Refactor: change "folder" to "directory" where needed.
This commit fixes every instance in which the word "folder" is
incorrectly used instead of "directory".
2019-02-13 20:51:04 +05:30

27 lines
884 B
Markdown

# du
> Disk usage: estimate and summarize file and directory space usage.
- List the sizes of a directory and any subdirectories, in the given unit (B/KB/MB):
`du -{{b|k|m}} {{path/to/directory}}`
- List the sizes of a directory and any subdirectories, in human-readable form (i.e. auto-selecting the appropriate unit for each size):
`du -h {{path/to/directory}}`
- Show the size of a single directory, in human readable units:
`du -sh {{path/to/directory}}`
- List the human-readable sizes of a directory and of all the files and directories within it:
`du -ah {{path/to/directory}}`
- List the human-readable sizes of a directory and any subdirectories, up to N levels deep:
`du -h --max-depth=N {{path/to/directory}}`
- List the human-readable size of all .jpg files in subdirectories of the current directory, and show a cumulative total at the end:
`du -ch */*.jpg`