find . -name "pattern" -print
find . -name "foo*"
$ find [where to start searching from] [expression determines what to find] [-options] [what to find] $ find ./GFG -name sample.txt
find /etc/dovecot/conf.d -name "*.conf" -mtime 5Copy
find /var/log/nginx -type f -name '*.log.gz'Copy