nushell/docs/commands/du.md
Justin Ma c0a1d18e3d
update #4455, regenerate commands' docs and update make_docs script (#4586)
* feat: update #4455, regenerate commands' docs

* chore: update make_docs script
2022-02-21 11:26:00 -06:00

28 lines
562 B
Markdown

---
title: du
layout: command
version: 0.59.0
---
Find disk usage sizes of specified items.
## Signature
```> du (path) --all --deref --exclude --max-depth --min-size```
## Parameters
- `path`: starting directory
- `--all`: Output file sizes as well as directory sizes
- `--deref`: Dereference symlinks to their targets for size
- `--exclude {glob}`: Exclude these file names
- `--max-depth {int}`: Directory recursion limit
- `--min-size {int}`: Exclude files below this size
## Examples
Disk usage of the current directory
```shell
> du
```