---
title: "Merge Text Files Into A Single File"
date: 2021-10-26T17:01:46.000Z
author: Z.SHINCHVEN
tags: [Bash, commandline]
canonical: https://atlassc.net/2021/10/27/merge-text-files
---
```bash
find /path/to/source -type f -name '*.txt' -exec cat {} + > merged.txt
```
