·1 min read
Using find with delete flag
Nice command Unix find.

When you need to remove some files in batch, use this:
find . -name "*.Identifier" -delete
Find like name suggest, will find every file with extension .Identifier and passing the flag -delete will remove all them.
Easy peasy, very usefull.
Written with StackEdit.
September 7, 2021 · Brazil