> For the complete documentation index, see [llms.txt](https://docs.ramsdenj.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ramsdenj.com/introduction-2/introduction-1/find.md).

# find

This is a compilation of useful ways to use the `find` command.

### Delete from Extension

Delete all files with the 'jpeg' extension.

```
find . -type f -name '*.jpeg' -delete
```
