Locates files or folders by name, type, or other criteria. [^1]
```bash
find . -name "report.txt" # find a specific file
find . -name "*.md" # find all files with a given extension
```
[^1]: https://www.gnu.org/software/findutils/manual/html_mono/find.html