fd

A fast, user-friendly alternative to the Unix find command

brewmacoslinux
Try with needOr install directly
Source

About

Simple, fast and user-friendly alternative to find

Commands

fd

Examples

Find all Python files in the current directory$ fd '\.py$'
Find files matching a pattern in a specific directory$ fd 'test' /path/to/directory
Find files and execute a command on each result$ fd '\.log$' -x rm {}