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


## File System Full 🤔

_Move files then symlink them_

## with **Bash**

``` bash
mkdir /mnt/mounted_drive
mv ~/bigdir /mnt/mounted_drive
ln -s /mnt/mounted_drive/bigdir ~/bigdir
```
