Merge pull request #991 from tldr-pages/osx-du-depth-fix

osx/du.md: fix depth option, plus minor tweaks
waldyrious/alt-syntax
Felix Yan 2016-08-06 18:38:48 +08:00 committed by GitHub
commit 72c5fd5810
1 changed files with 5 additions and 5 deletions

View File

@ -4,16 +4,16 @@
- Get a sum of the total size of a file/folder in human readable units:
`du -sh {{file_or_directory}}`
`du -sh {{path/to/file_or_folder}}`
- List file sizes of a directory and any subdirectories in KB:
`du -k {{file_or_directory}}`
`du -k {{path/to/file_or_folder}}`
- Get recursively, individual file/folder sizes in human readable form:
`du -ah {{directory}}`
`du -ah {{path/to/folder}}`
- List the KB sizes of directories for N levels below the specified directory:
- List the human-readable sizes of directories for 2 levels of depth below the specified directory:
`du -k -depth=1 {{directory}}`
`du -h -d 2 {{path/to/folder}}`