---
title: "021"
description: "_"
date: 2020-06-21
published: false
tags:
  - bash
template: hot-tip
---


## File System Full 🤔

_show largest files in current directory_

## with **Bash**

```bash
du . -h --max-depth=1
```
