Recursively search a directory for files by name.
dsearch FOLDER NAME
Searches FOLDER and all subdirectories for files whose names contain NAME.
dsearch /home/user/documents report
Prints the full path of every file or directory whose name contains "report".
pkg_add dsearch
cc -std=c99 -Wall -o dsearch dsearch.c
install -m 755 dsearch /usr/local/bin/
install -m 644 dsearch.1 /usr/local/man/man1/
ISC — see dsearch.c for full text.