[pappy@chmodx]:$ man find

$ find

Search for files in a directory hierarchy

DOCUMENTEDSearch & textUbuntu 24.04 LTS baseline

Synopsis

find [-H] [-L] [-P] [-D debugopts] [-Olevel] [starting-point...] [expression]

What it does

Examples

Find files by name
find /var/log -name '*.log'
Find regular files
find . -type f
Find files modified recently
find . -mtime -1

Important details

These examples are intentionally conservative. Command behavior can still depend on filesystem state, permissions, locale, shell, installed package version, and other system configuration. For exact option semantics, the linked authoritative documentation is the source of truth.