findutils

GNU find, xargs, and locate utilities for advanced file searching

brewmacoslinux
Try with needOr install directly
Source

About

Collection of GNU find, xargs, and locate

Commands

findxargslocateupdatedbfrcode

Examples

Find all Python files modified in the last 7 days$ find . -name '*.py' -mtime -7
Find and delete all temporary files matching a pattern$ find . -name '*.tmp' -type f -delete
Locate a file by name using the database$ locate filename