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
This is a compilation of useful ways to use the find
command.
Delete all files with the 'jpeg' extension.
find . -type f -name '*.jpeg' -delete
Last updated