> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/show-size-of-current-directory.md).

# Show Size of Current Directory

Size of current directory can be seen by using `du` command.

## Usage

To see size of current directory -

```bash
du -sh
```

To see size of a different directory -

```bash
du -sh /var
```

`/var` is the path to the directory you want to see the size of

***Source:*** [***Linuxize***](https://linuxize.com/post/how-get-size-of-file-directory-linux/)
