nushell/docs/commands/du.md

37 lines
1.4 KiB
Markdown
Raw Normal View History

2020-02-18 21:55:22 +01:00
# du
`du` stands for disk usage. It will give you the physical and apparent size of files and folders
## Examples
```shell
> du src/commands
─────────────┬────────────────────────────
path │ crates/nu-cli/src/commands
apparent │ 655.9 KB
physical │ 950.3 KB
directories │ [table 5 rows]
files │
─────────────┴────────────────────────────
```
```shell
2020-02-18 21:55:22 +01:00
> du -a src/commands
─────────────┬────────────────────────────
path │ crates/nu-cli/src/commands
apparent │ 655.9 KB
physical │ 950.3 KB
directories │ [table 5 rows]
files │ [table 118 rows]
─────────────┴────────────────────────────
```
```shell
2020-02-18 21:55:22 +01:00
> du *.rs
───┬──────────┬──────────┬──────────
# │ path │ apparent │ physical
2020-02-18 21:55:22 +01:00
───┼──────────┼──────────┼──────────
0 │ build.rs │ 78 B │ 4.1 KB
2020-02-18 21:55:22 +01:00
───┴──────────┴──────────┴──────────
```