nushell/docs/commands/du.md

29 lines
563 B
Markdown
Raw Normal View History

---
title: du
layout: command
version: 0.59.0
---
2020-02-18 21:55:22 +01:00
Find disk usage sizes of specified items.
2020-02-18 21:55:22 +01:00
## Signature
2020-02-18 21:55:22 +01:00
```> 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
```