nushell/docs/commands/du.md

26 lines
2.0 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 │ apparent │ physical │ directories
2020-02-18 21:55:22 +01:00
───┼──────────────┼──────────┼──────────┼────────────────
0 │ src/commands │ 411.5 KB │ 647.2 KB │ [table 1 rows]
2020-02-18 21:55:22 +01:00
───┴──────────────┴──────────┴──────────┴────────────────
> du -a src/commands
───┬──────────────┬──────────┬──────────┬─────────────────┬────────────────
# │ path │ apparent │ physical │ files │ directories
2020-02-18 21:55:22 +01:00
───┼──────────────┼──────────┼──────────┼─────────────────┼────────────────
0 │ src/commands │ 411.5 KB │ 647.2 KB │ [table 95 rows] │ [table 1 rows]
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
───┴──────────┴──────────┴──────────
```