mirror of https://github.com/CrimsonTome/tldr.git
327 B
327 B
du
Estimate file space usage
- get file sizes of directory's content
du {{file/directory}}
- get total size in human readable form
du -sh {{file/directory}}
- get recursively, individual file/folder sizes in human readable form
du -ah {{directory}}
- get file sizes till a specified depth
du --max-depth=1