1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-05 08:37:55 +01:00
tldr/osx/du.md
Shrayas Rajagopal 58308e3b36 new page for du
2014-01-27 10:45:51 +05:30

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