# find -name

`find . -name "*.txt"`

Find every file matching a name pattern in this folder and the ones inside it.

## What each part does

- `find` — command — find files
- `.` — argument: a file, a folder, or text
- `-name` — flag (a command option)
- `*.txt` — argument: a file, a folder, or text

Source: https://zero2vibecode.com/explain/find-name
