For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

Last updated